feature runner image 0.0009
Some checks are pending
Build Docker / build (push) Waiting to run

This commit is contained in:
2026-02-28 12:00:46 +03:00
parent 6081fab869
commit c262745ade

View File

@@ -0,0 +1,16 @@
# Dockerfile.runner
FROM node:20-bullseye
# Устанавливаем зависимости
RUN apt-get update && apt-get install -y \
ca-certificates curl gnupg lsb-release git
# Добавляем репозиторий Docker
RUN curl -fsSL https://download.docker.com/linux/debian/gpg | gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg \
&& echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/debian $(lsb_release -cs) stable" \
> /etc/apt/sources.list.d/docker.list \
&& apt-get update \
&& apt-get install -y docker-ce-cli docker-compose-plugin
# Проверка версий
RUN node -v && npm -v && docker -v && docker compose version