mirror of
https://github.com/trufflesecurity/trufflehog.git
synced 2024-11-10 07:04:24 +00:00
add rpm2cpio as dependency to dockerfile (#1985)
* add rpm2cpio as dependency to dockerfile * add dep
This commit is contained in:
parent
3df219312c
commit
e2dccc4799
2 changed files with 2 additions and 2 deletions
|
@ -9,7 +9,7 @@ RUN --mount=type=cache,target=/go/pkg/mod \
|
|||
GOOS=${TARGETOS} GOARCH=${TARGETARCH} go build -o trufflehog .
|
||||
|
||||
FROM alpine:3.18
|
||||
RUN apk add --no-cache bash git openssh-client ca-certificates \
|
||||
RUN apk add --no-cache bash git openssh-client ca-certificates rpm2cpio \
|
||||
&& rm -rf /var/cache/apk/* && update-ca-certificates
|
||||
COPY --from=builder /build/trufflehog /usr/bin/trufflehog
|
||||
COPY entrypoint.sh /etc/entrypoint.sh
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
FROM alpine:3.18
|
||||
|
||||
RUN apk add --no-cache bash git openssh-client ca-certificates \
|
||||
RUN apk add --no-cache bash git openssh-client ca-certificates rpm2cpio \
|
||||
&& rm -rf /var/cache/apk/* && update-ca-certificates
|
||||
WORKDIR /usr/bin/
|
||||
COPY trufflehog .
|
||||
|
|
Loading…
Reference in a new issue