From 88d140dcf1bc3f3538d8239ecb35b604df95f706 Mon Sep 17 00:00:00 2001 From: mezned Date: Sun, 10 Nov 2024 12:25:25 +0100 Subject: [PATCH] update --- promtail/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/promtail/Dockerfile b/promtail/Dockerfile index 1b50f6b..3f67047 100644 --- a/promtail/Dockerfile +++ b/promtail/Dockerfile @@ -43,7 +43,9 @@ RUN case "${BUILD_ARCH}" in \ RUN apk add --no-cache curl tar unzip; \ curl -LO "https://github.com/grafana/loki/releases/download/v${PROMTAIL_VERSION}/promtail-linux-amd64.zip"; \ unzip promtail-linux-amd64.zip; \ + ls ; \ mv promtail-linux-amd64 /usr/bin/promtail; \ + ls /usr/bin/promtail; \ chmod +x /usr/bin/promtail; \ rm promtail-linux-amd64.zip; \ apk del unzip; \