mirror of
https://github.com/trufflesecurity/trufflehog.git
synced 2026-05-16 13:20:35 +00:00
8921e93830
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
10 lines
280 B
Docker
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"]
|