Skip to content
Snippets Groups Projects
Commit 6ee9b6db authored by Pierre Krieger's avatar Pierre Krieger Committed by Gav Wood
Browse files

Fix Dockerfile (#1485)

* Fix Dockerfile

* Use ENTRYPOINT instead of CMD
parent 0ad2a5fb
No related merge requests found
......@@ -6,6 +6,7 @@ RUN apk add build-base \
cmake \
linux-headers \
openssl-dev \
clang-dev \
cargo
ARG PROFILE=release
......@@ -34,4 +35,4 @@ RUN rm -rf /usr/lib/python* && \
EXPOSE 30333 9933 9944
VOLUME ["/data"]
CMD ["/usr/local/bin/substrate"]
ENTRYPOINT ["/usr/local/bin/substrate"]
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment