Files
notification/services/auth/resources/layout/Dockerfile.alpine
A'zamov Samandar dd0da49eb9 auth service created
2025-04-19 14:58:55 +05:00

14 lines
283 B
Docker

FROM python:3.13-alpine
ENV PYTHONPYCACHEPREFIX=/dev/null
RUN apk update && apk add git gettext
WORKDIR /code
COPY requirements.txt /code/requirements.txt
RUN --mount=type=cache,target=/root/.cache/pip pip install -r requirements.txt
CMD ["sh", "./entrypoint.sh"]