Skip to content

Commit b66baa4

Browse files
authored
revert: Reverts "fix: Using version args to install the correct feast version" (#4112)
Revert "fix: Using version args to install the correct feast version (#3953)" This reverts commit b83a702.
1 parent ad45bb4 commit b66baa4

File tree

2 files changed

+4
-11
lines changed

2 files changed

+4
-11
lines changed

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

+2-5
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,14 @@
11
FROM python:3.9
22

3-
# Input the feast version to install
4-
# This requires feast package to be available in pypi before building this image
5-
ARG VERSION
6-
73
RUN apt update && \
84
apt install -y \
95
jq \
106
python3-dev \
117
build-essential
128

139
RUN pip install pip --upgrade
14-
RUN pip install "feast[aws,gcp,snowflake,redis,go,mysql,postgres]==${VERSION}"
10+
RUN pip install "feast[aws,gcp,snowflake,redis,go,mysql,postgres]"
11+
1512

1613
RUN apt update
1714
RUN apt install -y -V ca-certificates lsb-release wget
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
FROM python:3.9
22

3-
# Input the feast version to install
4-
# This requires feast package to be available in pypi before building this image
5-
ARG VERSION
6-
73
RUN apt update && \
84
apt install -y \
95
jq \
@@ -13,11 +9,11 @@ RUN apt update && \
139
RUN pip install pip --upgrade
1410
COPY . .
1511

16-
RUN pip install "feast[aws,gcp,snowflake,redis,go,mysql,postgres]==${VERSION}"
12+
RUN pip install "feast[aws,gcp,snowflake,redis,go,mysql,postgres]"
1713

1814
RUN apt update
1915
RUN apt install -y -V ca-certificates lsb-release wget
2016
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
2117
RUN apt install -y -V ./apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb
2218
RUN apt update
23-
RUN apt -y install libarrow-dev
19+
RUN apt -y install libarrow-dev

0 commit comments

Comments
 (0)