goscan/Dockerfile

20 lines
597 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-08 19:18:09 +01:00
RUN apk --no-cache update && apk --no-cache upgrade && apk add wget curl
RUN wget https://go.dev/dl/go1.23.1.linux-amd64.tar.gz && tar -xf go1.23.1.linux-amd64.tar.gz -C /usr/local && rm -rf go1.23.1.linux-amd64.tar.gz
COPY --from=builder /app/build/goscan /goscan
2024-09-06 15:03:37 +01:00
COPY ./entrypoint.sh /entrypoint.sh
2024-09-08 19:18:09 +01:00
COPY --from=builder /app .
2024-09-06 15:03:37 +01:00
RUN chmod +x /goscan && chmod +x /entrypoint.sh
2024-09-06 15:03:37 +01:00
ENTRYPOINT ["/entrypoint.sh"]