6 lines
215 B
Makefile
6 lines
215 B
Makefile
# Build the multi-arch release OCI image and push it to the registry
|
|
push-release-image:
|
|
docker buildx build \
|
|
--platform linux/amd64,linux/arm64 \
|
|
-t chewingbever/site:latest \
|
|
--push .
|