1
1
Fork 0
mirror of https://github.com/goreleaser/nfpm synced 2024-04-25 10:45:19 +02:00

fix: docker image entrypoint

changed the bindir on #445, forgot to change it in the dockerfile as well

closes #452

Signed-off-by: Carlos A Becker <caarlos0@gmail.com>
This commit is contained in:
Carlos A Becker 2022-02-09 08:50:40 -03:00
parent 4925c2d3a9
commit aba336ad1a
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940

View File

@ -1,4 +1,4 @@
FROM alpine
COPY nfpm_*.apk /tmp/
RUN apk add --allow-untrusted /tmp/nfpm_*.apk
ENTRYPOINT ["/usr/local/bin/nfpm"]
ENTRYPOINT ["/usr/bin/nfpm"]