Skip to content

Commit

Permalink
fix(docker): Remove use command instead of entrypoint to run tergum
Browse files Browse the repository at this point in the history
  • Loading branch information
ondrejsika committed Oct 4, 2021
1 parent 1f2e9ac commit 518c7bf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM debian:10-slim
COPY tergum /
ENTRYPOINT [ "/tergum" ]
COPY tergum /usr/local/bin/
CMD ["tergum"]
4 changes: 2 additions & 2 deletions Dockerfile.arm64v8
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM arm64v8/debian:10-slim
COPY tergum /
ENTRYPOINT [ "/tergum" ]
COPY tergum /usr/local/bin/
CMD ["tergum"]

0 comments on commit 518c7bf

Please sign in to comment.