shakecities/sites/Dockerfile

19 lines
396 B
Docker
Raw Normal View History

2023-11-08 18:19:31 +11:00
FROM --platform=$BUILDPLATFORM python:3.10-alpine AS builder
WORKDIR /app
2023-11-08 18:20:58 +11:00
COPY ../requirements.txt /app/requirements.txt
2023-11-08 18:19:31 +11:00
RUN --mount=type=cache,target=/root/.cache/pip \
pip3 install -r requirements.txt
COPY . /app
COPY ../templates /app/templates
COPY ../.env /app/.env
# Add mount point for data volume
VOLUME /data
ENTRYPOINT ["python3"]
CMD ["sldserver.py"]
FROM builder as dev-envs