diff --git a/.hadolint.yaml b/.hadolint.yaml new file mode 100644 index 000000000..3cc66d39f --- /dev/null +++ b/.hadolint.yaml @@ -0,0 +1,4 @@ +ignored: + - DL3018 + - DL3016 + - DL3059 diff --git a/Dockerfile b/Dockerfile index 06c67b876..3a403108a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ ARG USER=$USER # Build Geth in a stock Go builder container FROM golang:1.18-alpine as builder -RUN apk add --no-cache gcc=11.2.1_git20220219-r2 musl-dev=1.2.3-r2 linux-headers=5.16.7-r1 git=2.36.3-r0 +RUN apk add --no-cache gcc musl-dev linux-headers git COPY . /go-ethereum WORKDIR /go-ethereum