Files
nathanwoodburn 7ec28439a6
Build Docker / BuildImage (push) Successful in 38s
feat: Add curl to dockerfile
2026-04-01 13:14:11 +11:00

18 lines
364 B
Docker

FROM --platform=$BUILDPLATFORM python:3.10-alpine AS builder
WORKDIR /app
RUN apk add --no-cache curl
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