Skip to content

Commit 44b761b

Browse files
committed
Merge remote-tracking branch 'upstream/stable' into stable
2 parents bc30604 + 712e1d6 commit 44b761b

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

Makefile

+3-2
Original file line numberDiff line numberDiff line change
@@ -480,9 +480,10 @@ push-feature-server-docker:
480480
docker push $(REGISTRY)/feature-server:$(VERSION)
481481

482482
build-feature-server-docker:
483-
docker buildx build --build-arg VERSION=$(VERSION) \
483+
docker buildx build \
484484
-t $(REGISTRY)/feature-server:$(VERSION) \
485-
-f sdk/python/feast/infra/feature_servers/multicloud/Dockerfile --load .
485+
-f sdk/python/feast/infra/feature_servers/multicloud/Dockerfile \
486+
--load sdk/python/feast/infra/feature_servers/multicloud
486487

487488
push-feature-transformation-server-docker:
488489
docker push $(REGISTRY)/feature-transformation-server:$(VERSION)

infra/scripts/release/files_to_bump.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ infra/feast-operator/config/component_metadata.yaml 4
1818
infra/feast-operator/config/overlays/odh/params.env 1 2
1919
infra/feast-operator/api/feastversion/version.go 20
2020
java/pom.xml 38
21-
sdk/python/feast/infra/feature_servers/multicloud/Dockerfile 3
21+
sdk/python/feast/infra/feature_servers/multicloud/requirements.txt 2
2222
ui/package.json 3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
FROM registry.access.redhat.com/ubi8/python-311:1
2-
# keep VERSION arg on line #3, this is critical to release CI
3-
ARG VERSION="0.46.0"
42

5-
RUN pip install "feast[aws,gcp,snowflake,redis,go,mysql,postgres,opentelemetry,grpcio,k8s,duckdb,milvus]"==${VERSION}
3+
COPY requirements.txt requirements.txt
4+
RUN pip install -r requirements.txt
65

76
# modify permissions to support running with a random uid
87
RUN chmod g+w $(python -c "import feast.ui as ui; print(ui.__path__)" | tr -d "[']")/build/projects-list.json
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# keep VERSION on line #2, this is critical to release CI
2+
feast[aws,gcp,snowflake,redis,go,mysql,postgres,opentelemetry,grpcio,k8s,duckdb,milvus] == 0.46.0

0 commit comments

Comments
 (0)