From 8574bfd546f14f7df6d4e419719f9f75eea1f1c5 Mon Sep 17 00:00:00 2001 From: Anthony Tatowicz Date: Sun, 24 Jul 2016 10:40:38 -0500 Subject: [PATCH] Docker Arguments (#1703) Allows args to be passed in for more flexibility. --- docker/ubuntu/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docker/ubuntu/Dockerfile b/docker/ubuntu/Dockerfile index 4c82e1ecc..93888a48c 100644 --- a/docker/ubuntu/Dockerfile +++ b/docker/ubuntu/Dockerfile @@ -32,4 +32,5 @@ RUN git clone https://github.com/ethcore/parity && \ cargo build --release --verbose && \ ls /build/parity/target/release/parity && \ strip /build/parity/target/release/parity -RUN file /build/parity/target/release/parity + +ENTRYPOINT ["/build/parity/target/release/parity"]