feat(devops)
Some checks failed
Deploy to Production / build-and-deploy (push) Failing after 1m57s

This commit is contained in:
A'zamov Samandar
2025-11-05 16:36:21 +05:00
commit 425987e9d5
13 changed files with 418 additions and 0 deletions

20
Dockerfile Normal file
View File

@@ -0,0 +1,20 @@
FROM python:3.14.0
ARG SCRIPT="entrypoint.sh"
ENV SCRIPT=$SCRIPT
WORKDIR /code
COPY requirements.txt /code/requirements.txt
RUN pip install -r requirements.txt
COPY ./ /code
COPY $SCRIPT /code/$SCRIPT
RUN chmod +x $SCRIPT
CMD sh $SCRIPT