From c70927d712ee7d7c2d72447e26ec55abb8550707 Mon Sep 17 00:00:00 2001 From: Antonin Stefanutti Date: Tue, 27 Sep 2016 15:07:05 +0200 Subject: [PATCH] Remove bin directory from Docker image --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index c80a358..0182940 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,11 +20,11 @@ RUN mkdir bin RUN curl -kf \ -L https://github.com/astefanutti/decktape/releases/download/v1.0.0/phantomjs-linux-x86-64 \ - -o bin/phantomjs + -o phantomjs -RUN chmod +x bin/phantomjs +RUN chmod +x phantomjs WORKDIR /slides -ENTRYPOINT ["/decktape/bin/phantomjs", "/decktape/decktape.js"] +ENTRYPOINT ["/decktape/phantomjs", "/decktape/decktape.js"] CMD ["-h"]