feat: Add docker support for inbuilt HSD
Some checks failed
Build Docker / Build Image with HSD (push) Failing after 36s
Build Docker / Build Image (push) Failing after 38s

This commit is contained in:
2025-08-29 22:40:30 +10:00
parent 1203719eac
commit a2dc9f43e3
8 changed files with 208 additions and 18 deletions

View File

@@ -9,7 +9,20 @@ RUN --mount=type=cache,target=/root/.cache/pip \
COPY . /app
# Add mount point for data volume
# VOLUME /data
VOLUME /app/user_data
ARG BUILD_DATE
ARG VCS_REF
LABEL org.opencontainers.image.title="FireWallet" \
org.opencontainers.image.description="The Handshake Wallet That is Fire" \
org.opencontainers.image.url="https://firewallet.au" \
org.opencontainers.image.source="https://git.woodburn.au/nathanwoodburn/firewalletbrowser" \
org.opencontainers.image.version="2.0.0" \
org.opencontainers.image.created=$BUILD_DATE \
org.opencontainers.image.revision=$VCS_REF \
org.opencontainers.image.licenses="AGPL-3.0-only"
ENTRYPOINT ["python3"]
CMD ["server.py"]