6 lines
181 B
Docker
6 lines
181 B
Docker
FROM ethereum/client-go:v1.13.15
|
|
|
|
COPY ./scripts/entrypoint.sh /usr/local/bin/entrypoint.sh
|
|
RUN chmod u+x /usr/local/bin/entrypoint.sh
|
|
ENTRYPOINT [ "/usr/local/bin/entrypoint.sh" ]
|