Add Curl to Docker image (#11687)

This commit is contained in:
Denis Granha 2020-05-11 11:55:35 +02:00 committed by GitHub
parent 44f088bb47
commit fdf5f671cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -26,10 +26,12 @@ FROM alpine:edge
# show backtraces
ENV RUST_BACKTRACE 1
# curl is installed to help create health and readiness checks on Kubernetes
RUN apk add --no-cache \
libstdc++ \
eudev-libs \
libgcc
libgcc \
curl
RUN addgroup -g 1000 openethereum \
&& adduser -u 1000 -G openethereum -s /bin/sh -D openethereum