lecoffre_node/bitcoin/Dockerfile

11 lines
302 B
Docker

# Dockerfile personnalisé pour Bitcoin avec jq
FROM git.4nkweb.com/4nk/bitcoin:latest
# Installer jq et autres outils utiles pour les healthchecks
USER root
RUN apk update && apk add --no-cache jq bc && \
rm -rf /var/cache/apk/* /tmp/* /var/tmp/*
# Revenir à l'utilisateur bitcoin
USER bitcoin