Files
trufflehog/Dockerfile.goreleaser
renovate[bot] 8921e93830 chore(deps): update alpine docker tag to v3.22 (#4307)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-10 07:43:14 -07:00

10 lines
280 B
Docker

FROM alpine:3.22
RUN apk add --no-cache bash git openssh-client ca-certificates \
&& rm -rf /var/cache/apk/* && update-ca-certificates
WORKDIR /usr/bin/
COPY trufflehog .
COPY entrypoint.sh /etc/entrypoint.sh
RUN chmod +x /etc/entrypoint.sh
ENTRYPOINT ["/etc/entrypoint.sh"]