Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docker-grafana-influxdb/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM ubuntu:16.04

ENV GRAFANA_VERSION 4.1.1-1484211277
ENV INFLUXDB_VERSION 1.2.0
ENV GRAFANA_VERSION 5.2.1
ENV INFLUXDB_VERSION 1.6.0

# Prevent some error messages
ENV DEBIAN_FRONTEND noninteractive
Expand All @@ -16,7 +16,7 @@ ENV INFLUXDB_GRAFANA_PW grafana
ENV ROOT_PW root

RUN apt-get -y update && apt-get -y upgrade ; \
apt-get -y install wget supervisor curl libfontconfig netcat ;\
apt-get -y install wget supervisor curl libfontconfig netcat apt-utils ;\
wget -q https://grafanarel.s3.amazonaws.com/builds/grafana_${GRAFANA_VERSION}_amd64.deb && \
dpkg -i grafana_${GRAFANA_VERSION}_amd64.deb && rm grafana_${GRAFANA_VERSION}_amd64.deb ; \
wget -q https://dl.influxdata.com/influxdb/releases/influxdb_${INFLUXDB_VERSION}_amd64.deb && \
Expand Down