gosec-docker/Dockerfile
CSRBot 653cf8617f
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
chore(deps): update dependency docker.io/library/golang to v1.20.7
2023-08-02 00:32:45 +02:00

15 lines
458 B
Docker

FROM docker.io/library/golang:1.20.7-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@v${GOSEC_VERSION}; fi
RUN if [ -z "${GOSEC_VERSION}" ]; then set -ex; go install github.com/securego/gosec/v2/cmd/gosec@latest; fi
RUN cp /go/bin/gosec /usr/bin/gosec && \
rm -rf /go/*
ENTRYPOINT [ "/usr/bin/gosec" ]