Skip to content

Commit 6ab7bbd

Browse files
authored
Use ENTRYPOINT exec form instead of shell form (#6)
The image has no shell at /bin/sh so the shell form does not work
1 parent ef07274 commit 6ab7bbd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
FROM scratch
22
COPY rcon-cli /
3-
ENTRYPOINT /rcon-cli
3+
ENTRYPOINT ["/rcon-cli"]

0 commit comments

Comments
 (0)