Files
hello_gitea/build_image_for_runner.sh
direct-dev.ru bde6e734b3
All checks were successful
Release Build / create-builder-docker-image (push) Successful in 3m45s
finish working on the article - need test workflows
2025-07-28 00:38:46 +06:00

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 \
.