trufflehog/Dockerfile.goreleaser

10 lines
289 B
Docker
Raw Normal View History

FROM alpine:3.18
2022-04-08 21:06:09 +00:00
RUN apk add --no-cache bash git openssh-client ca-certificates rpm2cpio \
&& rm -rf /var/cache/apk/* && update-ca-certificates
2022-04-09 02:06:53 +00:00
WORKDIR /usr/bin/
2022-04-08 21:06:09 +00:00
COPY trufflehog .
COPY entrypoint.sh /etc/entrypoint.sh
RUN chmod +x /etc/entrypoint.sh
ENTRYPOINT ["/etc/entrypoint.sh"]