shakecities/sites/Dockerfile

16 lines
319 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:23:37 +11:00
COPY requirements.txt /app
2023-11-08 18:19:31 +11:00
RUN --mount=type=cache,target=/root/.cache/pip \
pip3 install -r requirements.txt
COPY . /app
# Add mount point for data volume
VOLUME /data
ENTRYPOINT ["python3"]
CMD ["sldserver.py"]
FROM builder as dev-envs