mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* streamline and sync dockerfiles * improve go dependency cacheability * unify alpine and ubuntu Dockerfiles * include glibc support in locally-built alpine images
45 lines
1.4 KiB
Docker
45 lines
1.4 KiB
Docker
ARG GRAFANA_VERSION="latest"
|
|
|
|
FROM grafana/grafana:${GRAFANA_VERSION}
|
|
|
|
USER root
|
|
|
|
ARG GF_INSTALL_IMAGE_RENDERER_PLUGIN="false"
|
|
|
|
ARG GF_GID="0"
|
|
ENV GF_PATHS_PLUGINS="/var/lib/grafana-plugins"
|
|
|
|
RUN mkdir -p "$GF_PATHS_PLUGINS" && \
|
|
chown -R grafana:${GF_GID} "$GF_PATHS_PLUGINS" && \
|
|
if [ $GF_INSTALL_IMAGE_RENDERER_PLUGIN = "true" ]; then \
|
|
apk add --no-cache udev ttf-opensans chromium \
|
|
fi
|
|
|
|
USER grafana
|
|
|
|
ENV GF_PLUGIN_RENDERING_CHROME_BIN="/usr/bin/chromium-browser"
|
|
|
|
RUN if [ $GF_INSTALL_IMAGE_RENDERER_PLUGIN = "true" ]; then \
|
|
grafana-cli \
|
|
--pluginsDir "$GF_PATHS_PLUGINS" \
|
|
--pluginUrl https://github.com/grafana/grafana-image-renderer/releases/latest/download/plugin-linux-x64-glibc-no-chromium.zip \
|
|
plugins install grafana-image-renderer; \
|
|
fi
|
|
|
|
ARG GF_INSTALL_PLUGINS=""
|
|
|
|
RUN if [ ! -z "${GF_INSTALL_PLUGINS}" ]; then \
|
|
OLDIFS=$IFS; \
|
|
IFS=','; \
|
|
for plugin in ${GF_INSTALL_PLUGINS}; do \
|
|
IFS=$OLDIFS; \
|
|
if expr match "$plugin" '.*\;.*'; then \
|
|
pluginUrl=$(echo "$plugin" | cut -d';' -f 1); \
|
|
pluginInstallFolder=$(echo "$plugin" | cut -d';' -f 2); \
|
|
grafana-cli --pluginUrl ${pluginUrl} --pluginsDir "${GF_PATHS_PLUGINS}" plugins install "${pluginInstallFolder}"; \
|
|
else \
|
|
grafana-cli --pluginsDir "${GF_PATHS_PLUGINS}" plugins install ${plugin}; \
|
|
fi \
|
|
done \
|
|
fi
|