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