Skip to content

Commit eff01d1

Browse files
authored
fix: Fix docker image for feature-server (#3272)
* Fix Signed-off-by: Kevin Zhang <[email protected]> * Fix Signed-off-by: Kevin Zhang <[email protected]> Signed-off-by: Kevin Zhang <[email protected]>
1 parent a9d48d0 commit eff01d1

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
4747
build-publish-docker-images:
4848
runs-on: ubuntu-latest
49-
needs: get-version
49+
needs: [get-version, publish-python-sdk]
5050
strategy:
5151
matrix:
5252
component: [feature-server, feature-server-python-aws, feature-server-java, feature-transformation-server]

sdk/python/feast/infra/feature_servers/multicloud/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ RUN apt update && \
88
build-essential
99

1010
RUN pip install pip --upgrade
11-
COPY . .
12-
RUN pip install ".[aws,gcp,snowflake,redis,go,mysql,postgres]"
11+
RUN pip install "feast[aws,gcp,snowflake,redis,go,mysql,postgres]"
12+
1313

1414
RUN apt update
1515
RUN apt install -y -V ca-certificates lsb-release wget

sdk/python/feast/infra/feature_servers/multicloud/Dockerfile.dev

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ RUN apt update && \
99

1010
RUN pip install pip --upgrade
1111
COPY . .
12-
RUN pip install ".[aws,gcp,snowflake,redis,go,mysql,postgres]"
12+
13+
RUN pip install "feast[aws,gcp,snowflake,redis,go,mysql,postgres]"
1314

1415
RUN apt update
1516
RUN apt install -y -V ca-certificates lsb-release wget

0 commit comments

Comments
 (0)