mirror of
https://github.com/trufflesecurity/trufflehog.git
synced 2024-11-13 00:17:18 +00:00
8712e80c7e
* Update Dockerfile - Alpine Linux 3.15 EoL Support ends in 2 weeks (01 Nov 2023). * Update Dockerfile.goreleaser - Alpine Linux 3.15 EoL Support ends in 2 weeks (01 Nov 2023).
9 lines
280 B
Docker
9 lines
280 B
Docker
FROM alpine:3.16
|
|
|
|
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"]
|