initial commit
This commit is contained in:
14
docker/Dockerfile.web
Normal file
14
docker/Dockerfile.web
Normal file
@@ -0,0 +1,14 @@
|
||||
FROM python:3.13-alpine
|
||||
|
||||
ENV PYCACHEPREFIX=/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"]
|
||||
|
||||
Reference in New Issue
Block a user