You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: 9.0/Dockerfile
+9
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,15 @@ COPY conf.d /etc/confd/conf.d
9
9
COPY templates /etc/confd/templates
10
10
COPY docker-entrypoint.sh /docker-entrypoint.sh
11
11
12
+
RUN apk add logrotate
13
+
14
+
WORKDIR /tmp
15
+
RUN wget https://github.com/martin-helmich/prometheus-nginxlog-exporter/releases/download/v1.10.0/prometheus-nginxlog-exporter_1.10.0_linux_arm64.tar.gz
16
+
RUN tar xvzfp prometheus-nginxlog-exporter_1.10.0_linux_arm64.tar.gz
17
+
RUN mv /tmp/prometheus-nginxlog-exporter /usr/local/bin/
18
+
RUN rm -rf /tmp/prometheus-nginxlog-exporter /tmp/prometheus-nginxlog-exporter_1.10.0_linux_arm64.tar.gz
0 commit comments