trufflehog/Dockerfile.goreleaser

11 lines
266 B
Docker
Raw Normal View History

2022-04-08 21:06:09 +00:00
FROM alpine:3.15
RUN apk add --no-cache git ca-certificates \
&& rm -rf /var/cache/apk/* && \
update-ca-certificates
2022-04-09 02:06:53 +00:00
WORKDIR /usr/bin/
2022-04-08 21:06:09 +00:00
COPY trufflehog .
COPY entrypoint.sh /etc/entrypoint.sh
RUN chmod +x /etc/entrypoint.sh
ENTRYPOINT ["/etc/entrypoint.sh"]