mirror of
https://github.com/status-im/infra-nimbus.git
synced 2025-01-31 16:07:50 +00:00
12 lines
164 B
Docker
12 lines
164 B
Docker
FROM alpine:3.12.1
|
|
|
|
ARG COMMIT
|
|
|
|
RUN apk add --no-cache libgcc pcre
|
|
|
|
COPY repo/build/* /usr/local/bin/
|
|
|
|
STOPSIGNAL SIGINT
|
|
|
|
ENTRYPOINT ["/usr/local/bin/beacon_node"]
|