diff --git a/scripts/docker/alpine/Dockerfile b/scripts/docker/alpine/Dockerfile index c2b3229ae89..cedc8236708 100644 --- a/scripts/docker/alpine/Dockerfile +++ b/scripts/docker/alpine/Dockerfile @@ -26,12 +26,13 @@ FROM alpine:edge # show backtraces ENV RUST_BACKTRACE 1 -# curl is installed to help create health and readiness checks on Kubernetes +# curl and jq are installed to help create health and readiness checks on Kubernetes RUN apk add --no-cache \ libstdc++ \ eudev-libs \ libgcc \ - curl + curl \ + jq RUN addgroup -g 1000 openethereum \ && adduser -u 1000 -G openethereum -s /bin/sh -D openethereum @@ -45,4 +46,4 @@ WORKDIR /home/openethereum RUN mkdir -p /home/openethereum/.local/share/io.parity.ethereum/ COPY --chown=openethereum:openethereum --from=builder /openethereum/target/x86_64-alpine-linux-musl/release/openethereum ./ -ENTRYPOINT ["./openethereum"] +ENTRYPOINT ["/home/openethereum/openethereum"]