mirror of
https://github.com/goreleaser/nfpm
synced 2024-11-18 19:04:07 +01:00
aba336ad1a
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>
5 lines
109 B
Docker
5 lines
109 B
Docker
FROM alpine
|
|
COPY nfpm_*.apk /tmp/
|
|
RUN apk add --allow-untrusted /tmp/nfpm_*.apk
|
|
ENTRYPOINT ["/usr/bin/nfpm"]
|