Last active
August 4, 2022 05:44
-
-
Save cshintov/645e482ab23ab4c866bba6ea88c49f54 to your computer and use it in GitHub Desktop.
Custom Prysm image with additional tools: curl, jq, nano, netcat-openbsd.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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