refactoring ci/cd
Some checks failed
Build Docker / deploy (push) Failing after 1s
Build Docker / build (push) Has been skipped

This commit is contained in:
2026-03-06 22:22:41 +03:00
parent 8f6b8c99a9
commit 9b9e0a5466
9 changed files with 32 additions and 18 deletions

10
docker/dockerfile.project Normal file
View File

@@ -0,0 +1,10 @@
FROM python:3.13-slim
WORKDIR /home/backend
COPY ./ /home/backend
RUN python -m pip install --upgrade pip \
&& python -m pip install -r requirements.txt
RUN chmod +x ./docker/start.sh
ENTRYPOINT ["./docker/start.sh"]