lecoffre_node/dockerfiles/Dockerfile.promtail
2025-09-21 23:37:37 +00:00

10 lines
188 B
Docker

FROM grafana/promtail:latest
# Installer curl et wget
USER root
RUN apt-get update && apt-get install -y \
curl \
wget \
&& rm -rf /var/lib/apt/lists/* \
&& apt-get clean