2024-09-06 20:19:32 +01:00
|
|
|
FROM golang:1.22-alpine3.20 AS builder
|
2024-09-06 04:04:11 +01:00
|
|
|
|
|
|
|
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
|
2024-09-06 04:04:11 +01:00
|
|
|
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-06 04:04:11 +01:00
|
|
|
|
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"]
|