diff --git a/Dockerfile b/Dockerfile index 42b9374..11d2328 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ -FROM golang:1.22.5 as build +FROM golang:1.23.1 as build RUN mkdir /build WORKDIR /build COPY . . RUN export CGO_ENABLED=0 && make build -FROM alpine:3.20.2 +FROM alpine:3.20.3 RUN apk add --no-cache --update bash curl jq ca-certificates tini python3 COPY --from=build /build/bin/script_exporter /bin/script_exporter EXPOSE 9469