diff --git a/Dockerfile_for_runner_image b/Dockerfile_for_runner_image new file mode 100644 index 0000000..5bd8e4d --- /dev/null +++ b/Dockerfile_for_runner_image @@ -0,0 +1,13 @@ +# Используем образ 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"] \ No newline at end of file diff --git a/bin/hello-api-1.0.0 b/bin/hello-api-1.0.0 new file mode 100755 index 0000000..4dbde42 Binary files /dev/null and b/bin/hello-api-1.0.0 differ