1
0
mirror of https://github.com/securego/gosec.git synced 2025-06-29 00:21:47 +02:00

Fix for Dockerfile smell DL3059 (#951)

Signed-off-by: Giovanni Rosa <g.rosa1@studenti.unimol.it>
This commit is contained in:
Giovanni Rosa
2023-04-14 13:46:24 +02:00
committed by GitHub
parent 2ee3213dc1
commit 7df7baa3f0

View File

@ -1,11 +1,11 @@
ARG GO_VERSION
FROM golang:${GO_VERSION}-alpine AS builder
RUN apk add --no-cache ca-certificates make git curl gcc libc-dev
RUN mkdir -p /build
RUN apk add --no-cache ca-certificates make git curl gcc libc-dev \
&& mkdir -p /build
WORKDIR /build
COPY . /build/
RUN go mod download
RUN make build-linux
RUN go mod download \
&& make build-linux
FROM golang:${GO_VERSION}-alpine
RUN apk add --no-cache ca-certificates bash git gcc libc-dev openssh