We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0570e0f commit 2f006f5Copy full SHA for 2f006f5
Dockerfile
@@ -7,7 +7,7 @@ COPY . .
7
RUN CGO_ENABLED=0 go build -a -o trufflehog main.go
8
9
FROM alpine:3.15
10
-RUN apk add --no-cache git; mkdir /tmp
+RUN apk add --no-cache git
11
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
12
COPY --from=builder /build/trufflehog /usr/bin/trufflehog
13
ENTRYPOINT ["/usr/bin/trufflehog"]
Dockerfile.goreleaser
@@ -2,7 +2,6 @@ FROM alpine:3.15
2
3
RUN apk add --no-cache git
4
WORKDIR /usr/bin/
5
-RUN mkdir /tmp
6
COPY trufflehog .
0 commit comments