trufflehog/Dockerfile.goreleaser

10 lines
280 B
Docker
Raw Normal View History

FROM alpine:3.20
2022-04-08 21:06:09 +00:00
2024-07-24 22:26:55 +00:00
RUN apk add --no-cache bash git openssh-client 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"]