goscan/Dockerfile

20 lines
546 B
Docker
Raw Normal View History

FROM golang:1.22-alpine3.20 AS builder
WORKDIR /app
COPY . .
RUN go mod download && go mod verify
RUN CGO_ENABLED=0 go build -ldflags="-s -w" -trimpath -o build/goscan
FROM alpine:3.20
2024-09-12 01:02:44 +01:00
COPY --from=builder /usr/local/go /usr/local/go
COPY --from=builder /app/build/goscan /goscan
2024-09-06 15:03:37 +01:00
COPY ./entrypoint.sh /entrypoint.sh
RUN chmod +x /goscan && chmod +x /entrypoint.sh
2024-09-08 19:57:55 +01:00
RUN curl -sfL https://raw.githubusercontent.com/securego/gosec/master/install.sh | sh -s -- -b /usr/local/bin
ENV PATH="/usr/local/go/bin:${PATH}"
2024-09-06 15:03:37 +01:00
ENTRYPOINT ["/entrypoint.sh"]