Skip to content

Commit

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

Signed-off-by: Kevin Zhang <kzhang@tecton.ai>

* Fix

Signed-off-by: Kevin Zhang <kzhang@tecton.ai>

Signed-off-by: Kevin Zhang <kzhang@tecton.ai>
  • Loading branch information
kevjumba committed Oct 6, 2022
1 parent d118fe4 commit 4ce366a
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
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
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
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 4ce366a

Please sign in to comment.