10 lines
188 B
Docker
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
|