Skip to content

Commit

Permalink
Merge pull request #1433 from ssvlabs/fix-dnsutils
Browse files Browse the repository at this point in the history
fix: (Dockerfile) dnsutils installation
  • Loading branch information
Lior Rutenberg authored Jun 13, 2024
2 parents 203da18 + da69592 commit 39046e4
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,11 @@ RUN --mount=type=cache,target=/root/.cache/go-build \
#
FROM golang:1.20.7 AS runner

RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -yq --no-install-recommends \
dnsutils=1:9.18.24-1 && \
rm -rf /var/lib/apt/lists/*

WORKDIR /

COPY --from=builder /go/bin/ssvnode /go/bin/ssvnode
Expand Down

0 comments on commit 39046e4

Please sign in to comment.