feat: новая функция

This commit is contained in:
2025-10-08 18:01:14 +03:00
parent 2c53bce32a
commit 725e7fd5a2
60 changed files with 5427 additions and 3921 deletions

View File

@@ -1,13 +1,17 @@
FROM node:20-alpine
FROM node:20-slim
# Устанавливаем необходимые пакеты
RUN apk update && apk add --no-cache \
RUN apt-get update && apt-get install -y \
openssh-client \
sshpass \
curl \
wget \
docker-cli \
ca-certificates
docker.io \
ca-certificates \
python3 \
make \
g++ \
&& rm -rf /var/lib/apt/lists/*
# Создаем рабочую директорию
WORKDIR /app