hnsdoh-status/Dockerfile
Nathan Woodburn 5a74687c0e
All checks were successful
Build Docker / BuildImage (push) Successful in 57s
Initial commit
2024-09-12 13:51:45 +10:00

17 lines
323 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
# Mount /data to store the data
VOLUME /data
ENTRYPOINT ["python3"]
CMD ["main.py"]
FROM builder as dev-envs