From af5f5fd6c0640ff84e88ab9f9d27e1a9d6dbb384 Mon Sep 17 00:00:00 2001 From: Adora Laura Kalb Date: Wed, 17 Apr 2024 15:34:23 +0200 Subject: [PATCH] add dockerfile --- Dockerfile | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..48957f3 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,30 @@ +FROM golang:1.22-alpine AS dev + +COPY . /var/app +WORKDIR /var/app + +ENV GO111MODULE="on" \ + CGO_ENABLED=0 \ + GOOS=linux + +EXPOSE 80 +ENTRYPOINT ["sh"] + + +FROM dev as build + +RUN go mod download && go mod verify +RUN go build -o ntppool-exporter main.go +RUN chmod +x ntppool-exporter + + +FROM scratch AS prod + +WORKDIR /app +COPY --from=build /var/app/ntppool-exporter /bin/ + +LABEL maintainer="Adora Laura Kalb " + +EXPOSE 43609 +ENTRYPOINT ["/bin/ntppool-exporter"] +CMD [""]