We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44d6d72 commit 6ff0fa6Copy full SHA for 6ff0fa6
1 file changed
docker/exporter/Dockerfile
@@ -10,10 +10,13 @@ ARG PACKAGER
10
RUN ${PACKAGER} -y install --nodocs \
11
--setopt=skip_missing_names_on_install=False \
12
git \
13
- go \
14
dumb-init \
+ wget \
15
+ make \
16
&& ${PACKAGER} -y clean all ;
17
18
+RUN wget https://go.dev/dl/go1.23.0.linux-amd64.tar.gz && tar -xzf go1.23.0.linux-amd64.tar.gz && mv go /usr/local
19
+
20
RUN git clone https://github.com/prometheus-community/postgres_exporter.git && cd postgres_exporter && make build
21
22
FROM ${CONTAINERIMAGE}
0 commit comments