Skip to content

Commit

Permalink
Correctly escape args passed to octo.exe in alpine docker image. Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
hnrkndrssn committed Jan 23, 2019
1 parent 6740f52 commit 3f9e037
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfiles/alpine/Dockerfile
Expand Up @@ -14,7 +14,7 @@ ENV LANG en_US.UTF-8
# The dotnetcore bootstrapper doesnt work in alpine shell (built for bash)
# This allows invoking octo if running interactive container
RUN mkdir /octo &&\
echo "dotnet /octo/Octo.dll \$*" > /octo/alpine &&\
echo "dotnet /octo/Octo.dll \"\$@\"" > /octo/alpine &&\
ln /octo/alpine /usr/bin/octo &&\
chmod +x /usr/bin/octo

Expand Down

0 comments on commit 3f9e037

Please sign in to comment.