Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM debian:buster-slim
FROM debian:bookworm-slim
ARG UPSTREAM_VERSION
ENV ZCASH_DIR /home/zcash/.zcash
ENV ZCASH_CONF ${ZCASH_DIR}/zcash.conf
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 && \
Expand Down