mirror of
https://github.com/trufflesecurity/trufflehog.git
synced 2024-11-10 15:14:38 +00:00
7 lines
117 B
Docker
7 lines
117 B
Docker
FROM alpine:3.15
|
|
|
|
RUN apk add --no-cache git
|
|
WORKDIR /usr/bin/
|
|
COPY trufflehog .
|
|
|
|
ENTRYPOINT ["/usr/bin/trufflehog"]
|