Skip to content

Commit

Permalink
fix(security): vulnerabilities found in quorum-all-in-one
Browse files Browse the repository at this point in the history
Fixes #2059

Signed-off-by: aldousalvarez <aldousss.alvarez@gmail.com>
  • Loading branch information
aldousalvarez authored and petermetz committed Mar 27, 2023
1 parent d80a4e4 commit 77bddb7
Showing 1 changed file with 4 additions and 4 deletions.
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

0 comments on commit 77bddb7

Please sign in to comment.