Some checks failed
build-and-upload-docker / build-and-upload (push) Failing after 16m31s
17 lines
296 B
Bash
Executable File
17 lines
296 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
docker buildx build \
|
|
--progress=plain \
|
|
--tag rbvtopudding/devops:latest \
|
|
--push \
|
|
--platform linux/arm64/v8,linux/amd64 \
|
|
.
|
|
|
|
|
|
docker buildx build \
|
|
--progress=plain \
|
|
--tag rbvtopudding/devops:1.0.0 \
|
|
--push \
|
|
--platform linux/arm64/v8,linux/amd64 \
|
|
.
|