Files
ortools-clone/tools/docker/test/ubuntu-23.10/python.Dockerfile
2023-10-27 08:07:07 +02:00

14 lines
317 B
Docker

# ref: https://hub.docker.com/_/ubuntu
FROM ubuntu:23.10
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update -qq \
&& apt-get install -yq make \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
WORKDIR /root
ADD or-tools_amd64_ubuntu-23.10_python_v*.tar.gz .
RUN cd or-tools_*_v* && make test