mirror of
https://github.com/trufflesecurity/trufflehog.git
synced 2024-11-10 15:14:38 +00:00
1c01de324e
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
9 lines
303 B
Docker
9 lines
303 B
Docker
FROM alpine:3.19
|
|
|
|
RUN apk add --no-cache bash git openssh-client ca-certificates rpm2cpio binutils cpio \
|
|
&& 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"]
|