tools/docker: Fix alpine python

This commit is contained in:
Corentin Le Molgat
2023-02-03 16:15:05 +01:00
parent af4948c414
commit 4e845f8950
2 changed files with 3 additions and 2 deletions

View File

@@ -44,7 +44,7 @@ RUN apk add --no-cache openjdk8 maven
# Install Python
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 python3 -m pip install absl-py mypy-protobuf
################

View File

@@ -9,7 +9,8 @@ ENV PATH=/usr/local/bin:$PATH
RUN apk add --no-cache make
# Install Python
RUN apk add --no-cache python3-dev py3-pip py3-wheel py3-numpy
RUN apk add --no-cache python3-dev py3-pip py3-wheel \
py3-numpy py3-pandas py3-matplotlib py3-scipy
RUN python3 -m pip install absl-py mypy-protobuf
ENTRYPOINT ["/bin/sh", "-c"]
CMD ["/bin/sh"]