Skip to content

Commit

Permalink
Use absolute path for entrypoint in Dockerfile (#169)
Browse files Browse the repository at this point in the history
If the entrypoint uses a relative path we are not able to set a
different working directory, i.e. in Dockerfiles extending this.
  • Loading branch information
arnested authored May 31, 2021
1 parent e156cfd commit d8371b8
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 @@ -9,4 +9,4 @@ COPY --from=alpine \
/etc/ssl/certs/ca-certificates.crt
COPY shoutrrr /

ENTRYPOINT ["./shoutrrr"]
ENTRYPOINT ["/shoutrrr"]

0 comments on commit d8371b8

Please sign in to comment.