All checks were successful
Release Build / create-builder-docker-image (push) Successful in 3m45s
8 lines
205 B
Bash
8 lines
205 B
Bash
#!/bin/bash
|
|
|
|
docker buildx build \
|
|
--platform linux/amd64,linux/arm64 \
|
|
--tag ${DOCKERHUB_USERNAME}/my-build-golang-runner:latest \
|
|
--push \
|
|
-f Dockerfile_for_runner_image \
|
|
. |