fix ENTRYPOINT syntax and add CMD for easier use by new people;

This commit is contained in:
Jakub Sokołowski 2018-07-11 13:45:27 +02:00
parent edc9790782
commit ef7da275d4
No known key found for this signature in database
GPG Key ID: 4EF064D0E6D63020
1 changed files with 2 additions and 1 deletions

View File

@ -30,4 +30,5 @@ COPY --from=builder /go/src/github.com/status-im/status-go/static/keys/* /static
# 30304 is used for Discovery v5
EXPOSE 8080 8545 30303 30303/udp 30304/udp
ENTRYPOINT /usr/local/bin/statusd
ENTRYPOINT ["/usr/local/bin/statusd"]
CMD ["--help"]