From dd16f3d348a85043f4f8de4463c4c42aed26e3cb Mon Sep 17 00:00:00 2001 From: Voss Date: Fri, 19 Jan 2024 16:57:45 -0600 Subject: [PATCH] Update base image to bookworm attempt to update to bookworm instead of buster, will revert to bullseye if bookworm doesnt work. --- src/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Dockerfile b/src/Dockerfile index 546fe13..002b145 100644 --- a/src/Dockerfile +++ b/src/Dockerfile @@ -1,4 +1,4 @@ -FROM debian:buster-slim +FROM debian:bookworm-slim ARG UPSTREAM_VERSION ENV ZCASH_DIR /home/zcash/.zcash ENV ZCASH_CONF ${ZCASH_DIR}/zcash.conf @@ -6,7 +6,7 @@ WORKDIR /home/zcash RUN apt-get update && apt-get -y install apt-transport-https wget gnupg2 libc6 && \ wget -qO - https://apt.z.cash/zcash.asc | apt-key add - && \ - echo "deb [arch=amd64] https://apt.z.cash/ buster main" | tee /etc/apt/sources.list.d/zcash.list && \ + echo "deb [arch=amd64] https://apt.z.cash/ bookworm main" | tee /etc/apt/sources.list.d/zcash.list && \ apt-get update && apt-get -y install -y zcash=${UPSTREAM_VERSION#v} RUN useradd -ms /bin/bash zcash && \