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"]