Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(tools/quorum-all-in-one): address CVE-2021-36159 and CVE-2022-28391 #2240

Merged
Merged
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
8 changes: 4 additions & 4 deletions tools/docker/quorum-all-in-one/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG QUORUM_VERSION=21.4.1
ARG TESSERA_VERSION=21.1.1
ARG QUORUM_VERSION=22.7.4
ARG TESSERA_VERSION=22.1.7

FROM quorumengineering/quorum:$QUORUM_VERSION AS quorum
FROM quorumengineering/tessera:$TESSERA_VERSION AS tessera
Expand All @@ -8,10 +8,10 @@ COPY --from=quorum /usr/local/bin/geth /usr/local/bin/
COPY --from=quorum /usr/local/bin/bootnode /usr/local/bin/

# BASH
RUN apk update && apk add --no-cache bash
RUN apt update && apt-get -y install bash

# SUPERVISORD
RUN apk update && apk add --no-cache supervisor
RUN apt update && apt-get -y install supervisor
RUN mkdir -p /var/log/supervisor
COPY supervisord.conf /etc/supervisord.conf

Expand Down