grafana/scripts/verify-repo-update/Dockerfile.deb
Arve Knudsen 33ba9bb21b
verify-repo-update: Fix Dockerfile.deb (#24030)
Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>
2020-04-29 10:14:35 +02:00

16 lines
430 B
Docker

FROM ubuntu:20.04
ARG REPO_CONFIG=grafana.list.oss
ARG PACKAGE=grafana
RUN apt update && \
apt install -y curl \
apt-transport-https \
ca-certificates \
gnupg && \
curl https://packages.grafana.com/gpg.key | apt-key add -
COPY "./$REPO_CONFIG" /etc/apt/sources.list.d/grafana.list
RUN apt update && \
apt install -y $PACKAGE