From 4e845f895015fd558b0c59c95c4aefdfce0fc76f Mon Sep 17 00:00:00 2001 From: Corentin Le Molgat Date: Fri, 3 Feb 2023 16:15:05 +0100 Subject: [PATCH] tools/docker: Fix alpine python --- tools/docker/images/alpine-edge.Dockerfile | 2 +- tools/docker/test/alpine-edge/python.Dockerfile | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/tools/docker/images/alpine-edge.Dockerfile b/tools/docker/images/alpine-edge.Dockerfile index 9fed9c59d0..f104a9fb0c 100644 --- a/tools/docker/images/alpine-edge.Dockerfile +++ b/tools/docker/images/alpine-edge.Dockerfile @@ -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 ################ diff --git a/tools/docker/test/alpine-edge/python.Dockerfile b/tools/docker/test/alpine-edge/python.Dockerfile index feba0b34cf..a3f2d843e8 100644 --- a/tools/docker/test/alpine-edge/python.Dockerfile +++ b/tools/docker/test/alpine-edge/python.Dockerfile @@ -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"]