Skip to content

Commit 35a0f25

Browse files
committed
bump feast in dockers to 0.26
Signed-off-by: Stefano Lottini <stefano.lottini@datastax.com>
1 parent bf14bb8 commit 35a0f25

File tree

6 files changed

+8
-6
lines changed

6 files changed

+8
-6
lines changed

python/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ benchmarking containers.
345345

346346
```
347347
cd docker/cassandra
348-
docker compose up
348+
docker-compose up -d
349349
```
350350

351351
If everything goes well, you should see an output like this:
@@ -384,6 +384,8 @@ docker exec -it cassandra-cassandra-1 cqlsh -e \
384384
3. From the host machine, provision the feature store:
385385

386386
```
387+
cd ../../feature_repos/cassandra/
388+
387389
# This is unfortunately necessary because inside docker feature servers resolve
388390
# Cassandra host name as `cassandra`, but since we're running materialization from shell,
389391
# Cassandra is accessible on localhost:

python/docker/astra_db/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM python:3.9
22

3-
RUN pip3 install 'feast[cassandra]==0.25.1'
3+
RUN pip3 install 'feast[cassandra]==0.26'
44

55
COPY feature_repos/astra_db feature_repo
66

python/docker/cassandra/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM python:3.9
22

3-
RUN pip3 install 'feast[cassandra]==0.25.1'
3+
RUN pip3 install 'feast[cassandra]==0.26'
44

55
COPY feature_repos/cassandra feature_repo
66

python/docker/datastore/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ RUN mkdir -p /usr/local/gcloud \
1111
# Adding the package path to local
1212
ENV PATH $PATH:/usr/local/gcloud/google-cloud-sdk/bin
1313

14-
RUN pip3 install 'feast[gcp]==0.25.1'
14+
RUN pip3 install 'feast[gcp]==0.26'
1515

1616
COPY feature_repos/datastore feature_repo
1717

python/docker/dynamo/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM python:3.9
22

3-
RUN pip3 install 'feast[aws]==0.25.1'
3+
RUN pip3 install 'feast[aws]==0.26'
44

55
COPY feature_repos/dynamo feature_repo
66

python/docker/redis/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM python:3.9
22

3-
RUN pip3 install 'feast[redis]==0.25.1'
3+
RUN pip3 install 'feast[redis]==0.26'
44
RUN pip3 install cffi
55

66
COPY feature_repos/redis feature_repo

0 commit comments

Comments
 (0)