From de3e077eb96cf950b0163c111b367726d0e6417f Mon Sep 17 00:00:00 2001 From: Kevin Zhang Date: Wed, 5 Oct 2022 16:16:34 -0700 Subject: [PATCH 1/2] Fix Signed-off-by: Kevin Zhang --- .github/workflows/publish.yml | 2 +- sdk/python/feast/infra/feature_servers/multicloud/Dockerfile | 3 ++- .../feast/infra/feature_servers/multicloud/Dockerfile.dev | 3 ++- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 9587044a84..e0aba6df89 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -46,7 +46,7 @@ jobs: build-publish-docker-images: runs-on: ubuntu-latest - needs: get-version + needs: [get-version, build_wheels] strategy: matrix: component: [feature-server, feature-server-python-aws, feature-server-java, feature-transformation-server] diff --git a/sdk/python/feast/infra/feature_servers/multicloud/Dockerfile b/sdk/python/feast/infra/feature_servers/multicloud/Dockerfile index 990c1fd8f0..5cd390588b 100644 --- a/sdk/python/feast/infra/feature_servers/multicloud/Dockerfile +++ b/sdk/python/feast/infra/feature_servers/multicloud/Dockerfile @@ -9,7 +9,8 @@ RUN apt update && \ RUN pip install pip --upgrade COPY . . -RUN pip install ".[aws,gcp,snowflake,redis,go,mysql,postgres]" +RUN pip install "feast[aws,gcp,snowflake,redis,go,mysql,postgres]" + RUN apt update RUN apt install -y -V ca-certificates lsb-release wget diff --git a/sdk/python/feast/infra/feature_servers/multicloud/Dockerfile.dev b/sdk/python/feast/infra/feature_servers/multicloud/Dockerfile.dev index 990c1fd8f0..ecbc199a5b 100644 --- a/sdk/python/feast/infra/feature_servers/multicloud/Dockerfile.dev +++ b/sdk/python/feast/infra/feature_servers/multicloud/Dockerfile.dev @@ -9,7 +9,8 @@ RUN apt update && \ RUN pip install pip --upgrade COPY . . -RUN pip install ".[aws,gcp,snowflake,redis,go,mysql,postgres]" + +RUN pip install "feast[aws,gcp,snowflake,redis,go,mysql,postgres]" RUN apt update RUN apt install -y -V ca-certificates lsb-release wget From 4af06c3db73e3350ff559d03c0248e3c515b3a28 Mon Sep 17 00:00:00 2001 From: Kevin Zhang Date: Wed, 5 Oct 2022 16:23:34 -0700 Subject: [PATCH 2/2] Fix Signed-off-by: Kevin Zhang --- .github/workflows/publish.yml | 2 +- sdk/python/feast/infra/feature_servers/multicloud/Dockerfile | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index e0aba6df89..039ab6a24e 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -46,7 +46,7 @@ jobs: build-publish-docker-images: runs-on: ubuntu-latest - needs: [get-version, build_wheels] + needs: [get-version, publish-python-sdk] strategy: matrix: component: [feature-server, feature-server-python-aws, feature-server-java, feature-transformation-server] diff --git a/sdk/python/feast/infra/feature_servers/multicloud/Dockerfile b/sdk/python/feast/infra/feature_servers/multicloud/Dockerfile index 5cd390588b..c95c515fb4 100644 --- a/sdk/python/feast/infra/feature_servers/multicloud/Dockerfile +++ b/sdk/python/feast/infra/feature_servers/multicloud/Dockerfile @@ -8,7 +8,6 @@ RUN apt update && \ build-essential RUN pip install pip --upgrade -COPY . . RUN pip install "feast[aws,gcp,snowflake,redis,go,mysql,postgres]"