Files
ortools-clone/tools/docker/test/fedora-41/python.Dockerfile
2025-06-03 17:25:06 +02:00

15 lines
351 B
Docker

# ref: https://hub.docker.com/_/fedora
FROM fedora:41
RUN dnf -y update \
&& dnf -y install git \
wget which lsb_release pkgconfig autoconf libtool zlib-devel \
&& dnf -y install @development-tools \
&& dnf -y install gcc-c++ cmake \
&& dnf clean all
WORKDIR /root
ADD or-tools_amd64_fedora-41_python_v*.tar.gz .
RUN cd or-tools_*_v* && make test