firewallet-mobile-api/Dockerfile
Nathan Woodburn f9af1b2606
All checks were successful
Build Docker / BuildImage (push) Successful in 45s
feat: Add initial watchonly server files
2024-06-03 12:22:28 +10:00

17 lines
315 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
ENTRYPOINT ["python3"]
CMD ["main.py"]
FROM builder as dev-envs