1
1
Fork 0
mirror of https://github.com/goreleaser/nfpm synced 2024-04-23 20:45:25 +02:00
nfpm/Dockerfile
Carlos A Becker aba336ad1a
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>
2022-02-09 08:50:40 -03:00

5 lines
109 B
Docker

FROM alpine
COPY nfpm_*.apk /tmp/
RUN apk add --allow-untrusted /tmp/nfpm_*.apk
ENTRYPOINT ["/usr/bin/nfpm"]