From 335ded0f61ed7b022891a3e5929cce66672e9481 Mon Sep 17 00:00:00 2001 From: Unheard0840 Date: Wed, 5 Aug 2026 16:16:11 +0000 Subject: [PATCH] Add Dockerfile Add initial Dockerfile --- Dockerfile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..a272618 --- /dev/null +++ b/Dockerfile @@ -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"] \ No newline at end of file