trufflehog/Dockerfile

18 lines
621 B
Docker
Raw Permalink Normal View History

2022-07-26 20:43:42 +00:00
FROM --platform=${BUILDPLATFORM} golang:bullseye as builder
2022-04-08 21:06:09 +00:00
WORKDIR /build
2022-04-08 21:06:09 +00:00
COPY . .
2022-07-26 20:43:42 +00:00
ENV CGO_ENABLED=0
ARG TARGETOS TARGETARCH
RUN --mount=type=cache,target=/go/pkg/mod \
--mount=type=cache,target=/root/.cache/go-build \
GOOS=${TARGETOS} GOARCH=${TARGETARCH} go build -o trufflehog .
FROM alpine:3.20
RUN apk add --no-cache bash git openssh-client ca-certificates rpm2cpio binutils cpio \
&& rm -rf /var/cache/apk/* && update-ca-certificates
COPY --from=builder /build/trufflehog /usr/bin/trufflehog
COPY entrypoint.sh /etc/entrypoint.sh
RUN chmod +x /etc/entrypoint.sh
ENTRYPOINT ["/etc/entrypoint.sh"]