shakecities/Dockerfile

16 lines
339 B
Docker
Raw Normal View History

2023-11-08 17:55:49 +11:00
FROM --platform=$BUILDPLATFORM python:3.10-alpine AS builder
WORKDIR /app
COPY requirements.txt /app
RUN --mount=type=cache,target=/root/.cache/pip \
pip3 install -r requirements.txt
COPY . /app
# Add mount point for data volume
VOLUME /data
2023-11-08 18:04:07 +11:00
CMD [ "python3", "server.py" ] & [ "python3", "sldserver.py" ]
2023-11-08 17:55:49 +11:00
FROM builder as dev-envs