Files
hello_gitea/Dockerfile.builder
direct-dev.ru 6d9a869a6f
All checks were successful
Release Build / create-builder-docker-image (push) Successful in 2m17s
3-ый релиз образа для билда
2025-07-28 07:57:50 +06:00

13 lines
475 B
Ruby
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"]