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