Skip to content
This repository was archived by the owner on Nov 6, 2020. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions scripts/docker/alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"]