make(ci): Fix alpine python dockerfile

This commit is contained in:
Corentin Le Molgat
2023-02-08 14:18:14 +01:00
parent 7277ccc140
commit 92a1889c60

View File

@@ -1,7 +1,9 @@
FROM ortools/make:alpine_swig AS env
ENV PATH=/root/.local/bin:$PATH
RUN apk add --no-cache python3-dev py3-pip py3-wheel \
py3-numpy py3-pandas py3-matplotlib
py3-numpy py3-pandas py3-matplotlib py3-scipy
RUN rm -f /usr/lib/python3.*/EXTERNALLY-MANAGED \
&& python3 -m pip install absl-py mypy-protobuf
FROM env AS devel
WORKDIR /home/project