We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 526ebca commit 463b89dCopy full SHA for 463b89d
1 file changed
Makefile
@@ -5,6 +5,7 @@
5
SHORT_NAME := redis
6
DRYCC_REGISTY ?= ${DEV_REGISTRY}
7
IMAGE_PREFIX ?= drycc
8
+PLATFORM ?= linux/amd64,linux/arm64
9
10
include versioning.mk
11
@@ -28,6 +29,9 @@ docker-build:
28
29
docker build ${DOCKER_BUILD_FLAGS} -t ${IMAGE} rootfs
30
docker tag ${IMAGE} ${MUTABLE_IMAGE}
31
32
+docker-buildx:
33
+ docker buildx build --platform ${PLATFORM} ${DOCKER_BUILD_FLAGS} -t ${IMAGE} rootfs --push
34
+
35
test: test-style
36
37
test-style:
0 commit comments