Files
hello_gitea/Dockerfile_for_runner_image
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

13 lines
475 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Используем образ Go с поддержкой мультиплатформенности
FROM golang:1.24
# Устанавливаем пакеты (одинаково работают на amd64/arm64)
RUN apt-get update && \
apt-get install -y --no-install-recommends \
git \
ca-certificates \
jq && \
rm -rf /var/lib/apt/lists/*
# (Опционально) Можно добавить команду по умолчанию
CMD ["bash"]