Files
auth/Dockerfile
A'zamov Samandar 425987e9d5
Some checks failed
Deploy to Production / build-and-deploy (push) Failing after 1m57s
feat(devops)
2025-11-05 16:36:21 +05:00

21 lines
247 B
Docker

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