diff options
author | Raul Benencia <raul@thousandeyes.com> | 2021-01-13 10:48:16 -0800 |
---|---|---|
committer | Raul Benencia <46945030+raul-te@users.noreply.github.com> | 2021-01-13 10:50:35 -0800 |
commit | fe1ad1db71a11328e86d0cfcf788829b3e9e64d0 (patch) | |
tree | a8e0cda08fbc692885d8eba23973cc98c041ea5d /Dockerfile | |
parent | 031cf1ee9c280d0163187ef301482b5e8b796324 (diff) |
Simplify ENTRYPOINT and CMD in Dockerfile
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 [] |