From 2fd5c1b1d5b0a7f1ff7d0a78a233058ae20cdc73 Mon Sep 17 00:00:00 2001 From: Jiaxiao Zheng Date: Fri, 24 Jan 2020 09:42:31 -0800 Subject: [PATCH] pin (#2909) --- backend/Dockerfile | 2 +- test/sample-test/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/Dockerfile b/backend/Dockerfile index 21c73234f2d7..754e7b9d0ac3 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -28,7 +28,7 @@ FROM python:3.5 as compiler RUN apt-get update -y && \ apt-get install --no-install-recommends -y -q default-jdk python3-setuptools python3-dev RUN wget https://bootstrap.pypa.io/get-pip.py && python3 get-pip.py -RUN python3 -m pip install pyarrow==0.14.1 tfx==0.15.0 +RUN python3 -m pip install apache-beam[gcp]==2.17 pyarrow==0.14.1 tfx==0.15.0 WORKDIR /go/src/github.com/kubeflow/pipelines COPY sdk sdk diff --git a/test/sample-test/Dockerfile b/test/sample-test/Dockerfile index 59de40e73f39..1b1d82663619 100644 --- a/test/sample-test/Dockerfile +++ b/test/sample-test/Dockerfile @@ -19,7 +19,7 @@ RUN pip3 install google-api-python-client==1.7.0 RUN pip3 install google-cloud-storage==1.17.0 RUN pip3 install fire==0.2.1 RUN pip3 install yamale==2.0 -RUN pip3 install pyarrow==0.14.1 tfx==0.15.0 +RUN pip3 install apache-beam[gcp]==2.17 pyarrow==0.14.1 tfx==0.15.0 # Install python client, including DSL compiler. COPY ./sdk/python /sdk/python