shakecities/sites/Dockerfile

14 lines
272 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
ENTRYPOINT ["python3"]
CMD ["sldserver.py"]
FROM builder as dev-envs