From fe1ad1db71a11328e86d0cfcf788829b3e9e64d0 Mon Sep 17 00:00:00 2001 From: Raul Benencia Date: Wed, 13 Jan 2021 10:48:16 -0800 Subject: Simplify ENTRYPOINT and CMD in Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile index b2c4904..fc5eda0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,5 +17,5 @@ COPY --from=build /shoelaces/web /web ENV BIND_ADDR=0.0.0.0:8081 EXPOSE 8081 -ENTRYPOINT ["/shoelaces"] -CMD ["-data-dir", "/data", "-static-dir", "/web"] +ENTRYPOINT ["/shoelaces", "-data-dir", "/data", "-static-dir", "/web"] +CMD [] -- cgit v1.2.3