File tree Expand file tree Collapse file tree 3 files changed +12
-6
lines changed Expand file tree Collapse file tree 3 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 13
13
- name : Set up QEMU
14
14
uses : docker/setup-qemu-action@v1
15
15
- name : Set up Docker Buildx
16
- uses : docker/setup-buildx-action@v1
16
+ uses : docker/setup-buildx-action@v2
17
+ with :
18
+ install : true
17
19
- name : Set up AWS SDK
18
20
uses : aws-actions/configure-aws-credentials@v1
19
21
with :
50
52
docker build \
51
53
--file sdk/python/feast/infra/feature_servers/aws_lambda/Dockerfile \
52
54
--tag $ECR_REGISTRY/$ECR_REPOSITORY:${{ steps.image-tag.outputs.DOCKER_IMAGE_TAG }} \
55
+ --load \
53
56
.
54
57
docker push $ECR_REGISTRY/$ECR_REPOSITORY:${{ steps.image-tag.outputs.DOCKER_IMAGE_TAG }}
55
58
outputs :
@@ -177,7 +180,9 @@ jobs:
177
180
- name : Set up QEMU
178
181
uses : docker/setup-qemu-action@v1
179
182
- name : Set up Docker Buildx
180
- uses : docker/setup-buildx-action@v1
183
+ uses : docker/setup-buildx-action@v2
184
+ with :
185
+ install : true
181
186
- name : Login to DockerHub
182
187
uses : docker/login-action@v1
183
188
with :
Original file line number Diff line number Diff line change 69
69
docker build \
70
70
--file sdk/python/feast/infra/feature_servers/aws_lambda/Dockerfile \
71
71
--tag $ECR_REGISTRY/$ECR_REPOSITORY:${{ steps.image-tag.outputs.DOCKER_IMAGE_TAG }} \
72
+ --load \
72
73
.
73
74
docker push $ECR_REGISTRY/$ECR_REPOSITORY:${{ steps.image-tag.outputs.DOCKER_IMAGE_TAG }}
74
75
outputs :
Original file line number Diff line number Diff line change @@ -212,17 +212,17 @@ push-feature-server-python-aws-docker:
212
212
docker push $(REGISTRY ) /feature-server-python-aws:$$ VERSION
213
213
214
214
build-feature-server-python-aws-docker :
215
- docker buildx --build-arg VERSION=$$ VERSION \
215
+ docker buildx build --build-arg VERSION=$$ VERSION \
216
216
-t $(REGISTRY ) /feature-server-python-aws:$$ VERSION \
217
- -f sdk/python/feast/infra/feature_servers/aws_lambda/Dockerfile .
217
+ -f sdk/python/feast/infra/feature_servers/aws_lambda/Dockerfile --load .
218
218
219
219
push-feature-transformation-server-docker :
220
220
docker push $(REGISTRY ) /feature-transformation-server:$(VERSION )
221
221
222
222
build-feature-transformation-server-docker :
223
- docker build --build-arg VERSION=$(VERSION ) \
223
+ docker buildx build --build-arg VERSION=$(VERSION ) \
224
224
-t $(REGISTRY ) /feature-transformation-server:$(VERSION ) \
225
- -f sdk/python/feast/infra/transformation_servers/Dockerfile .
225
+ -f sdk/python/feast/infra/transformation_servers/Dockerfile --load .
226
226
227
227
push-feature-server-java-docker :
228
228
docker push $(REGISTRY ) /feature-server-java:$(VERSION )
You can’t perform that action at this time.
0 commit comments