We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5477565 commit 18a0882Copy full SHA for 18a0882
1 file changed
Makefile
@@ -5,6 +5,7 @@
5
SHORT_NAME := postgres
6
DRYCC_REGISTRY ?= ${DEV_REGISTRY}
7
IMAGE_PREFIX ?= drycc
8
+PLATFORM ?= linux/amd64,linux/arm64
9
10
include versioning.mk
11
@@ -25,6 +26,9 @@ docker-build:
25
26
docker build ${DOCKER_BUILD_FLAGS} -t ${IMAGE} .
27
docker tag ${IMAGE} ${MUTABLE_IMAGE}
28
29
+docker-buildx:
30
+ docker buildx build --platform ${PLATFORM} -t ${IMAGE} . --push
31
+
32
test: test-style test-functional
33
34
test-style:
0 commit comments