Skip to content

Commit

Permalink
Use ENTRYPOINT exec form instead of shell form (#6)
Browse files Browse the repository at this point in the history
The image has no shell at /bin/sh so the shell form does not work
  • Loading branch information
futek authored May 16, 2020
1 parent ef07274 commit 6ab7bbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM scratch
COPY rcon-cli /
ENTRYPOINT /rcon-cli
ENTRYPOINT ["/rcon-cli"]

0 comments on commit 6ab7bbd

Please sign in to comment.