feature dockerfile fix 0.0023
Some checks failed
Build Docker / build (push) Failing after 8m30s

This commit is contained in:
2026-02-28 15:46:59 +03:00
parent 2a22e2e1a1
commit 5b72997888
2 changed files with 17 additions and 23 deletions

View File

@@ -1,6 +1,17 @@
FROM python:3.15.0a6-slim
WORKDIR /home/backend
COPY ../server /home/backend
RUN apt-get update && apt-get install -y \
# curl \
# gnupg \
# git \
# build-essential \
# libffi-dev \
# libssl-dev \
cargo \
g++ \
&& rm -rf /var/lib/apt/lists/*
RUN python -m pip install --upgrade pip \
&& python -m pip install -r requirements.txt
RUN chmod +x ./docker/start.sh

View File

@@ -1,35 +1,18 @@
FROM python:3.11-slim
# Dockerfile.runner
FROM node:20-bullseye
# Устанавливаем системные зависимости
# Устанавливаем зависимости
RUN apt-get update && apt-get install -y \
build-essential \
g++ \
git \
curl \
ca-certificates \
lsb-release \
libffi-dev \
libssl-dev \
cargo \
&& rm -rf /var/lib/apt/lists/*
# Устанавливаем Node.js 20
RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \
&& apt-get install -y nodejs \
&& npm -v && node -v
# Устанавливаем Docker CLI
# Добавляем репозиторий 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
# Обновляем pip и setuptools
RUN python3 -m pip install --upgrade pip wheel setuptools maturin setuptools-rust
# Копируем проект
COPY ../server /home/backend
# Устанавливаем Python зависимости
RUN python3 -m pip install -r /home/backend/requirements.txt
# Проверка версий
RUN node -v && npm -v && docker -v && docker compose version