Files
firewalletbrowser/Dockerfile
Nathan Woodburn d42dae3263
All checks were successful
Build Docker / Build Image (push) Successful in 49s
fix: Add curl to container
2025-05-08 12:47:59 +10:00

19 lines
349 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
# Add mount point for data volume
# VOLUME /data
RUN apk add git openssl curl
ENTRYPOINT ["python3"]
CMD ["server.py"]
FROM builder as dev-envs