shakecities/Dockerfile
Nathan Woodburn d8267200ac
All checks were successful
Build Docker / Build SLDs Image (push) Successful in 17s
Build Docker / Build Main Image (push) Successful in 18s
fix: Remove mounting data for frontends
2023-11-08 18:28:33 +11:00

14 lines
269 B
Docker

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