Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Fix docker image for feature-server #3272

Merged
merged 2 commits into from
Oct 6, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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, build_wheels]
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should be after the publish sdk step not build wheels

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh right fixed

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good catch

strategy:
matrix:
component: [feature-server, feature-server-python-aws, feature-server-java, feature-transformation-server]
Expand Down
3 changes: 2 additions & 1 deletion sdk/python/feast/infra/feature_servers/multicloud/Dockerfile
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 . .
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

do we still need this?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

removed

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