@@ -8,11 +8,11 @@ FROM alpine
8
8
RUN apk add --update --no-cache nginx nodejs nodejs-npm git curl wget gcc ca-certificates \
9
9
python-dev py-pip musl-dev libffi-dev cairo supervisor bash \
10
10
py-pyldap py-rrd &&\
11
- wget -q -O /etc/apk/keys/sgerrand.rsa.pub \
12
- https://raw.githubusercontent .com/sgerrand/alpine-pkg-glibc/master/sgerrand .rsa.pub &&\
13
- wget https://github.com/sgerrand/alpine-pkg-glibc/releases/download/2.26 -r0/glibc-2.26 -r0.apk &&\
14
- apk add --no-cache glibc-2.26 -r0.apk &&\
15
- rm glibc-2.26 -r0.apk &&\
11
+ apk --no-cache add ca-certificates wget && \
12
+ wget -q -O /etc/apk/keys/sgerrand.rsa.pub https://alpine-pkgs.sgerrand .com/sgerrand.rsa.pub &&\
13
+ wget https://github.com/sgerrand/alpine-pkg-glibc/releases/download/2.28 -r0/glibc-2.28 -r0.apk &&\
14
+ apk add glibc-2.28 -r0.apk &&\
15
+ rm glibc-2.28 -r0.apk &&\
16
16
adduser -D -u 1000 -g 'www' www &&\
17
17
pip install -U pip pytz gunicorn six --no-cache-dir &&\
18
18
npm install -g wizzy &&\
@@ -43,7 +43,7 @@ RUN git clone --depth=1 --branch master https://github.com/etsy/statsd.git /
43
43
# Install Grafana
44
44
RUN mkdir /src/grafana &&\
45
45
mkdir /opt/grafana &&\
46
- curl https://s3-us-west-2.amazonaws.com/grafana-releases/release/grafana-4.6.3 .linux-x64 .tar.gz \
46
+ curl https://s3-us-west-2.amazonaws.com/grafana-releases/release/grafana-5.2.2 .linux-amd64 .tar.gz \
47
47
-o /src/grafana.tar.gz &&\
48
48
tar -xzf /src/grafana.tar.gz -C /opt/grafana --strip-components=1 &&\
49
49
rm /src/grafana.tar.gz
@@ -68,6 +68,7 @@ ADD ./graphite/storage-schemas.conf /opt/graphite/conf/storage-schemas.conf
68
68
ADD ./graphite/storage-aggregation.conf /opt/graphite/conf/storage-aggregation.conf
69
69
RUN mkdir -p /opt/graphite/storage/whisper &&\
70
70
mkdir -p /opt/graphite/storage/log/webapp &&\
71
+ touch /opt/graphite/storage/log/webapp/info.log &&\
71
72
touch /opt/graphite/storage/graphite.db /opt/graphite/storage/index &&\
72
73
chown -R www /opt/graphite/storage &&\
73
74
chmod 0775 /opt/graphite/storage /opt/graphite/storage/whisper &&\
0 commit comments