mirror of
https://github.com/trufflesecurity/trufflehog.git
synced 2024-11-10 15:14:38 +00:00
10 lines
266 B
Docker
10 lines
266 B
Docker
FROM alpine:3.15
|
|
|
|
RUN apk add --no-cache git 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"]
|