Skip to content

Commit

Permalink
Bitcoin: switch to Debian Bookworm base image
Browse files Browse the repository at this point in the history
  • Loading branch information
zcalusic committed May 4, 2023
1 parent 1987ada commit 7e2aae9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions bitcoin/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM zcalusic/debian-bullseye as builder
FROM zcalusic/debian-bookworm as builder
MAINTAINER Zlatko Čalušić <[email protected]>

ARG BITCOIN_VERSION
Expand Down Expand Up @@ -37,7 +37,7 @@ RUN apt-get update \
&& make install-strip \
&& gzip -9 /usr/share/man/man1/bitcoin-cli.1 /usr/share/man/man1/bitcoin-tx.1 /usr/share/man/man1/bitcoin-wallet.1 /usr/share/man/man1/bitcoind.1

FROM zcalusic/debian-bullseye
FROM zcalusic/debian-bookworm
MAINTAINER Zlatko Čalušić <[email protected]>

RUN apt-get update \
Expand Down
2 changes: 1 addition & 1 deletion bitcoin/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ BITCOIN_VERSION ?= $(BITCOIN_CURRENT_VERSION)
default: docker_build

docker_build:
docker pull zcalusic/debian-bullseye
docker pull zcalusic/debian-bookworm
docker build --build-arg BITCOIN_VERSION=$(BITCOIN_VERSION) -t $(DOCKER_IMAGE):$(BITCOIN_VERSION) .
ifeq ($(BITCOIN_VERSION),$(BITCOIN_CURRENT_VERSION))
docker tag $(DOCKER_IMAGE):$(BITCOIN_VERSION) $(DOCKER_IMAGE):latest
Expand Down

0 comments on commit 7e2aae9

Please sign in to comment.