File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -14,27 +14,27 @@ RUN apk add --update --no-cache nginx nodejs nodejs-npm git curl wget gcc ca
14
14
apk add glibc-2.28-r0.apk &&\
15
15
rm glibc-2.28-r0.apk &&\
16
16
adduser -D -u 1000 -g 'www' www &&\
17
- pip install -U pip pytz gunicorn six --no-cache-dir &&\
17
+ pip install -U pip pytz gunicorn six &&\
18
18
npm install -g wizzy &&\
19
19
npm cache clean --force
20
20
21
21
# Checkout the master branches of Graphite, Carbon and Whisper and install from there
22
22
RUN mkdir /src &&\
23
23
git clone --depth=1 --branch master https://github.com/graphite-project/whisper.git /src/whisper &&\
24
24
cd /src/whisper &&\
25
- pip install . --no-cache-dir &&\
25
+ pip install . &&\
26
26
python setup.py install
27
27
28
28
RUN git clone --depth=1 --branch master https://github.com/graphite-project/carbon.git /src/carbon &&\
29
29
cd /src/carbon &&\
30
- pip install . --no-cache-dir &&\
30
+ pip install . &&\
31
31
python setup.py install
32
32
33
33
RUN git clone --depth=1 --branch master https://github.com/graphite-project/graphite-web.git /src/graphite-web &&\
34
34
cd /src/graphite-web &&\
35
- pip install . --no-cache-dir &&\
35
+ pip install . &&\
36
36
python setup.py install &&\
37
- pip install -r requirements.txt --no-cache-dir &&\
37
+ pip install -r requirements.txt &&\
38
38
python check-dependencies.py
39
39
40
40
# Install StatsD
You can’t perform that action at this time.
0 commit comments