15 lines
354 B
Docker
15 lines
354 B
Docker
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"
|
|
|
|
RUN apk add --no-cache busybox-extras
|
|
|
|
WORKDIR /app
|
|
|
|
COPY app.sh /app/app.sh
|
|
|
|
RUN chmod +x /app/app.sh \
|
|
&& ln -s /app/app.sh /usr/local/bin/munin-bitcoin
|
|
|
|
CMD ["munin-bitcoin"] |