mirror of
https://github.com/securego/gosec.git
synced 2024-11-05 19:45:51 +00:00
fix(docker) gcc and libc-dev required bindings
The docker image doesn't include the necessary packages to build / analyze some packages. Adding gcc and libc-dev to addess this.
This commit is contained in:
parent
cb4f343eaf
commit
5d613739e1
1 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
ARG GO_VERSION=1.13
|
||||
FROM golang:${GO_VERSION}-alpine AS builder
|
||||
RUN apk add --update --no-cache ca-certificates make git curl
|
||||
RUN apk add --update --no-cache ca-certificates make git curl gcc libc-dev
|
||||
RUN mkdir -p /build
|
||||
WORKDIR /build
|
||||
COPY . /build/
|
||||
|
@ -8,7 +8,7 @@ RUN go mod download
|
|||
RUN make build-linux
|
||||
|
||||
FROM golang:${GO_VERSION}-alpine
|
||||
RUN apk add --update --no-cache ca-certificates git
|
||||
RUN apk add --update --no-cache ca-certificates git gcc libc-dev
|
||||
ENV GO111MODULE on
|
||||
COPY --from=builder /build/gosec /bin/gosec
|
||||
ENTRYPOINT ["/bin/gosec"]
|
||||
|
|
Loading…
Reference in a new issue