Files
firewalletbrowser/Dockerfile
Nathan Woodburn 1203719eac
All checks were successful
Build Docker / Build Image (push) Successful in 2m58s
fix: Docker python version and fix reporting missing requirements
2025-08-29 13:28:12 +10:00

18 lines
348 B
Docker

FROM --platform=$BUILDPLATFORM python:3.13-alpine AS builder
WORKDIR /app
RUN apk add git openssl curl
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
ENTRYPOINT ["python3"]
CMD ["server.py"]
FROM builder AS dev-envs