Skip to content

Commit

Permalink
add requirements.txt and add mysqlclient package
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrice authored and ptran32 committed Sep 15, 2022
1 parent a59c33a commit 153ce3f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion sdk/python/feast/infra/feature_servers/multicloud/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ FROM python:3.8
RUN apt update && \
apt install -y jq
RUN pip install pip --upgrade
RUN pip install "feast[aws,gcp,snowflake,redis,go]"
COPY . .

RUN pip install -r requirements.txt
RUN apt update
RUN apt install -y -V ca-certificates lsb-release wget
RUN wget https://apache.jfrog.io/artifactory/arrow/$(lsb_release --id --short | tr 'A-Z' 'a-z')/apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ RUN apt update && \
RUN pip install pip --upgrade
COPY . .

RUN pip install ".[aws,gcp,snowflake,redis,go]"
RUN pip install -r requirements.txt
RUN apt update
RUN apt install -y -V ca-certificates lsb-release wget
RUN wget https://apache.jfrog.io/artifactory/arrow/$(lsb_release --id --short | tr 'A-Z' 'a-z')/apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
mysqlclient
feast[aws,gcp,snowflake,redis,go]

0 comments on commit 153ce3f

Please sign in to comment.