firewalletbrowser/Dockerfile

18 lines
343 B
Docker
Raw Permalink Normal View History

2024-01-29 15:22:39 +11:00
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
2025-02-01 17:26:11 +11:00
RUN apk add git openssl
2024-01-29 15:22:39 +11:00
ENTRYPOINT ["python3"]
CMD ["server.py"]
FROM builder as dev-envs