We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 028071a commit 0fa77cdCopy full SHA for 0fa77cd
Makefile
@@ -54,18 +54,18 @@ PHONY: all
54
build: ## Build default docker image
55
cd $(CURRENT_DIR)$(DOCKERFILE_DIR); \
56
docker buildx build \
57
- --platform linux/arm64 \
+ --platform linux/arm64,linux/amd64 \
58
--tag $(IMAGE_TAG) \
59
- --load .
+ --push .
60
PHONY: build
61
62
build-from-cache: ## Build default docker image using cached layers
63
64
65
66
67
--cache-from $(CACHE_FROM) \
68
69
PHONY: build-from-cache
70
71
test: ## Run dgoss tests over docker images
0 commit comments