shakecities/sites/Dockerfile
Nathan Woodburn 55152f3f72
Some checks failed
Build Docker / Build Main Image (push) Successful in 17s
Build Docker / Build SLDs Image (push) Failing after 17s
fix: Update python requirements
2023-11-08 18:20:58 +11:00

19 lines
396 B
Docker

FROM --platform=$BUILDPLATFORM python:3.10-alpine AS builder
WORKDIR /app
COPY ../requirements.txt /app/requirements.txt
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