Files
ortools-clone/tools/docker/test/fedora-37/python.Dockerfile
2023-02-07 10:31:14 +01:00

15 lines
361 B
Docker

# ref: https://hub.docker.com/_/fedora
FROM fedora:37
RUN dnf -y update \
&& dnf -y install git \
wget which redhat-lsb-core pkgconfig autoconf libtool zlib-devel \
&& dnf -y groupinstall "Development Tools" \
&& dnf -y install gcc-c++ cmake \
&& dnf clean all
WORKDIR /root
ADD or-tools_amd64_fedora-37_python_v*.tar.gz .
RUN cd or-tools_*_v* && make test