python-webserver-template/Dockerfile
Nathan Woodburn 579539ccb8
All checks were successful
Build Docker / BuildImage (push) Successful in 1m2s
feat: Add initial code
2024-09-13 10:26:36 +10:00

17 lines
336 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 \
python3 -m pip install -r requirements.txt
COPY . /app
# Optionally mount /data to store the data
# VOLUME /data
ENTRYPOINT ["python3"]
CMD ["main.py"]
FROM builder as dev-envs