Skip to content

Instantly share code, notes, and snippets.

@cshintov
Last active August 4, 2022 05:44
Show Gist options
  • Save cshintov/645e482ab23ab4c866bba6ea88c49f54 to your computer and use it in GitHub Desktop.
Save cshintov/645e482ab23ab4c866bba6ea88c49f54 to your computer and use it in GitHub Desktop.
Custom Prysm image with additional tools: curl, jq, nano, netcat-openbsd.
FROM gcr.io/prysmaticlabs/prysm/beacon-chain:v2.1.4-rc.0 as upstream
FROM debian:buster-slim
COPY --from=upstream /app /app
RUN apt-get update && apt-get install -y \
curl \
jq \
nano \
netcat-openbsd \
&& rm -rf /var/lib/apt/lists/*
STOPSIGNAL SIGINT
ENTRYPOINT ["/app/cmd/beacon-chain/beacon-chain"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment