We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4fbb836 commit 59ef267Copy full SHA for 59ef267
2 files changed
Dockerfile
@@ -1,4 +1,5 @@
1
-FROM registry.drycc.cc/drycc/base:bookworm
+ARG CODENAME
2
+FROM registry.drycc.cc/drycc/base:${CODENAME}
3
4
ENV DRYCC_UID=1001 \
5
DRYCC_GID=1001 \
Makefile
@@ -25,6 +25,9 @@ podman-build:
25
podman build --build-arg CODENAME=${CODENAME} -t ${IMAGE} .
26
podman tag ${IMAGE} ${MUTABLE_IMAGE}
27
28
+podman-buildx:
29
+ podman buildx build --build-arg CODENAME=${CODENAME} --platform ${PLATFORM} -t ${IMAGE} . --push
30
+
31
deploy: build podman-build podman-push
32
33
.PHONY: all bootstrap build test podman-build deploy
0 commit comments