Skip to content

Commit

Permalink
Make install.sh executable
Browse files Browse the repository at this point in the history
  • Loading branch information
Carlgo11 committed Aug 16, 2020
1 parent afdee12 commit cd37ca9
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
Expand Up @@ -4,7 +4,7 @@ WORKDIR /teamspeak
RUN apk --no-cache add curl jq wget bash libstdc++
COPY --chown=root install.sh /teamspeak/install.sh
RUN addgroup -S teamspeak && adduser -s /bin/bash -S teamspeak -G teamspeak
RUN ./install.sh; rm ./install.sh
RUN chmod +x install.sh; ./install.sh; rm ./install.sh
RUN apk --no-cache del curl jq wget

USER teamspeak
Expand Down

0 comments on commit cd37ca9

Please sign in to comment.