Files
ortools-clone/tools/docker/test/debian-13/python.Dockerfile

15 lines
354 B
Docker
Raw Permalink Normal View History

2024-03-25 11:52:51 +01:00
# ref: https://hub.docker.com/_/debian
FROM debian:13
RUN apt-get update \
&& apt-get install -yq wget build-essential cmake zlib1g-dev \
2024-03-25 11:52:51 +01:00
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
ENTRYPOINT ["/bin/bash", "-c"]
CMD ["/bin/bash"]
WORKDIR /root
ADD or-tools_amd64_debian-13_python_v*.tar.gz .
RUN cd or-tools_*_v* && make test