make: Fix python docker

This commit is contained in:
Mizux Seiha
2020-09-21 14:47:48 +02:00
parent 6254c9124f
commit 4da3ce51d3
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
FROM ortools/make:debian_swig AS env
RUN apt-get update -qq \
&& apt-get install -yq python3-dev python3-pip \
&& apt-get install -yq python3-dev python3-pip python3-venv \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

View File

@@ -1,6 +1,6 @@
FROM ortools/make:ubuntu_swig AS env
RUN apt-get update -qq \
&& apt-get install -yq python3-dev python3-pip python3-six \
&& apt-get install -yq python3-dev python3-pip python3-venv python3-six \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*