We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c357b6 commit 238d5afCopy full SHA for 238d5af
guestbook-go/Makefile
@@ -23,11 +23,11 @@ release: clean build push clean
23
24
# builds a docker image that builds the app and packages it into a minimal docker image
25
build:
26
- docker build -t ${REGISTRY}/guestbook:${VERSION} .
+ docker buildx build --load -t ${REGISTRY}/guestbook:${VERSION} .
27
28
# push the image to an registry
29
push:
30
- gcloud docker -- push ${REGISTRY}/guestbook:${VERSION}
+ docker buildx build --push -t ${REGISTRY}/guestbook:${VERSION} .
31
32
# remove previous images and containers
33
clean:
0 commit comments