Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/topic/awelzel/tweak-repo-urls'
Browse files Browse the repository at this point in the history
* origin/topic/awelzel/tweak-repo-urls:
  docker: Use Debian_12, not Debian_Testing
  • Loading branch information
awelzel committed Jul 10, 2023
2 parents 6320e7c + 45067f1 commit b4e44d7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 4 additions & 2 deletions docker/debian-bookworm-lts.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,10 @@ RUN apt update && apt install -y --no-install-recommends \
# Cache busting
ARG STAMP=1681753750

RUN curl -fsSL https://download.opensuse.org/repositories/security:zeek/Debian_Testing/Release.key | gpg --dearmor | tee /etc/apt/trusted.gpg.d/security_zeek.gpg > /dev/null
RUN echo 'deb http://download.opensuse.org/repositories/security:/zeek/Debian_Testing/ /' | tee /etc/apt/sources.list.d/security:zeek.list && apt update
ENV REPO_DISTRO=Debian_12

RUN curl -fsSL https://download.opensuse.org/repositories/security:zeek/${REPO_DISTRO}/Release.key | gpg --dearmor | tee /etc/apt/trusted.gpg.d/security_zeek.gpg > /dev/null
RUN echo "deb http://download.opensuse.org/repositories/security:/zeek/${REPO_DISTRO}/ /" | tee /etc/apt/sources.list.d/security:zeek.list && apt update

RUN apt install -y --no-install-recommends \
zeek-lts-btest \
Expand Down
6 changes: 4 additions & 2 deletions docker/debian-bookworm.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,10 @@ RUN apt update && apt install -y --no-install-recommends \
libnode-dev \
python3

RUN curl -fsSL https://download.opensuse.org/repositories/security:zeek/Debian_Testing/Release.key | gpg --dearmor | tee /etc/apt/trusted.gpg.d/security_zeek.gpg > /dev/null
RUN echo 'deb http://download.opensuse.org/repositories/security:/zeek/Debian_Testing/ /' | tee /etc/apt/sources.list.d/security:zeek.list && apt update
ENV REPO_DISTRO=Debian_12

RUN curl -fsSL https://download.opensuse.org/repositories/security:zeek/${REPO_DISTRO}/Release.key | gpg --dearmor | tee /etc/apt/trusted.gpg.d/security_zeek.gpg > /dev/null
RUN echo "deb http://download.opensuse.org/repositories/security:/zeek/${REPO_DISTRO}/ /" | tee /etc/apt/sources.list.d/security:zeek.list && apt update

RUN apt install -y --no-install-recommends \
zeek-btest \
Expand Down

0 comments on commit b4e44d7

Please sign in to comment.