Add Dockerfile

Add initial Dockerfile
This commit is contained in:
2026-08-05 16:16:11 +00:00
parent 24da10b0c1
commit 335ded0f61
+12
View File
@@ -0,0 +1,12 @@
FROM alpine:3.20
LABEL org.opencontainers.image.title="Munin-bitcoin"
LABEL org.opencontainers.image.description="Bitcoin watch-only wallet and label manager for StartOS"
WORKDIR /app
COPY app.sh /app/app.sh
RUN chmod +x /app/app.sh
CMD ["/app/app.sh"]