Skip to content

Commit

Permalink
- Fixed chmod in Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
alexsporn committed Apr 27, 2021
1 parent e31ab8f commit 7119639
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ RUN apk --no-cache add ca-certificates curl jq tini tar\
fi\
&& addgroup --gid 39999 hornet\
&& adduser -h /app -s /bin/sh -G hornet -u 39999 -D hornet\
&& chmod +x /app/hornet\
&& chmod +x /app/hornet-legacy\
&& chown hornet:hornet -R /app\
&& rm /tmp/hornet.tgz\
&& apk del jq curl
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.arm64
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ RUN apk --no-cache add ca-certificates curl jq tini tar\
fi\
&& addgroup --gid 39999 hornet\
&& adduser -h /app -s /bin/sh -G hornet -u 39999 -D hornet\
&& chmod +x /app/hornet\
&& chmod +x /app/hornet-legacy\
&& chown hornet:hornet -R /app\
&& rm /tmp/hornet.tgz\
&& apk del jq curl
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.goreleaser
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ RUN apk --no-cache add ca-certificates gnupg wget tini\
&& rm glibc-2.30-r0.apk\
&& addgroup --gid 39999 hornet\
&& adduser -h /app -s /bin/sh -G hornet -u 39999 -D hornet\
&& chmod +x /app/hornet\
&& chmod +x /app/hornet-legacy\
&& chown hornet:hornet -R /app;

# Not exposing ports, as it might be more efficient to run this on host network because of performance gain.
Expand Down

0 comments on commit 7119639

Please sign in to comment.