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

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