mirror of
https://github.com/securego/gosec.git
synced 2024-11-05 11:35:51 +00:00
Remove additional --update
for apk in Dockerfile (#818)
There is no need to use --update with --no-cache when using apk on Alpine Linux, as using --no-cache will fetch the index every time and leave no local cache, so the index will always be the latest without temporary files remain in the image.
This commit is contained in:
parent
c3ede62822
commit
fb587c1d10
1 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
ARG GO_VERSION
|
||||
FROM golang:${GO_VERSION}-alpine AS builder
|
||||
RUN apk add --update --no-cache ca-certificates make git curl gcc libc-dev
|
||||
RUN apk add --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 bash git gcc libc-dev openssh
|
||||
RUN apk add --no-cache ca-certificates bash git gcc libc-dev openssh
|
||||
ENV GO111MODULE on
|
||||
COPY --from=builder /build/gosec /bin/gosec
|
||||
COPY entrypoint.sh /bin/entrypoint.sh
|
||||
|
|
Loading…
Reference in a new issue