Skip to content

Commit

Permalink
fix: Fix docker image for feature-server (feast-dev#3272)
Browse files Browse the repository at this point in the history
* Fix

Signed-off-by: Kevin Zhang <[email protected]>

* Fix

Signed-off-by: Kevin Zhang <[email protected]>

Signed-off-by: Kevin Zhang <[email protected]>
  • Loading branch information
kevjumba authored Oct 6, 2022
1 parent a9d48d0 commit eff01d1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
build-publish-docker-images:
runs-on: ubuntu-latest
needs: get-version
needs: [get-version, publish-python-sdk]
strategy:
matrix:
component: [feature-server, feature-server-python-aws, feature-server-java, feature-transformation-server]
Expand Down
4 changes: 2 additions & 2 deletions sdk/python/feast/infra/feature_servers/multicloud/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ RUN apt update && \
build-essential

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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit eff01d1

Please sign in to comment.