fix docker compose file and docker

This commit is contained in:
nabijonovdavronbek619@gmail.com
2025-12-06 19:35:36 +05:00
parent 17c20ddf94
commit 0e40423aba
14 changed files with 206 additions and 9 deletions

13
docker/Dockerfile.web Normal file
View File

@@ -0,0 +1,13 @@
FROM python:3.12-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"]