Skip to content

Commit 6e7d5a6

Browse files
jhujhitiErick Turnquist
authored andcommitted
Fix quoting of exec argument in the entrypoint script
1 parent a5da382 commit 6e7d5a6

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

docker/docker-entrypoint.sh

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,4 @@ echo "✅ Initialisation is done."
6868

6969
# Launch whatever is passed by docker
7070
# (i.e. the RUN instruction in the Dockerfile)
71-
#
72-
# shellcheck disable=SC2068
73-
exec $@
71+
exec "$@"

0 commit comments

Comments
 (0)