Merge pull request #5908 from charlieok/use_bullseye_apt_source_in_dockerfile

Use bullseye apt source in Dockerfile to match debian:11 base image; merging as requested by @nuttycom
This commit is contained in:
sasha 2022-04-26 14:09:04 -07:00 committed by GitHub
commit 42c5feaabd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ ARG ZCASHD_USER=zcashd
ARG ZCASHD_UID=2001
RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys $ZCASH_SIGNING_KEY_ID \
&& echo "deb [arch=amd64] https://apt.z.cash/ buster main" > /etc/apt/sources.list.d/zcash.list \
&& echo "deb [arch=amd64] https://apt.z.cash/ bullseye main" > /etc/apt/sources.list.d/zcash.list \
&& apt-get update
RUN if [ -z "$ZCASH_VERSION" ]; \