gosec-docker/Dockerfile
Markus Pesch 9ce654629c
Some checks failed
continuous-integration/drone/push Build is failing
Initial Commit
2022-01-30 22:00:06 +01:00

14 lines
482 B
Docker

FROM docker.io/library/golang:1.17.5-alpine AS build
ARG GOSEC_VERSION
RUN apk update && \
apk upgrade && \
apk add git make
RUN if [ ! -z "${GOSEC_VERSION}" ]; then set -ex; go install github.com/securego/gosec/v2/cmd/gosec@${GOSEC_VERSION}; fi
RUN if [ -z "${GOSEC_VERSION}" ]; then set -ex; go install github.com/securego/gosec/v2/cmd/gosec@latest; fi
FROM docker.io/library/alpine:3.15.0
COPY --from=build /go/bin/gosec /usr/bin/gosec
ENTRYPOINT [ "/usr/bin/gosec" ]