From d7fb031c983a7d6ec43699564a717909083a0374 Mon Sep 17 00:00:00 2001 From: Elliott Balsley <3991046+llamafilm@users.noreply.github.com> Date: Fri, 16 Feb 2024 00:31:39 -0800 Subject: [PATCH] add python3 (#119) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 28e449c..6faa22e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ COPY . . RUN export CGO_ENABLED=0 && make build FROM alpine:3.19.1 -RUN apk add --no-cache --update bash curl jq ca-certificates tini +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 ENTRYPOINT ["/sbin/tini", "--", "/bin/script_exporter"]