Skip to content

Commit 4ddfe29

Browse files
authored
Merge pull request #124 from bainss/patch-1
update Dockerfile for kubernetes
2 parents 9c48d68 + c4ce95a commit 4ddfe29

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Dockerfile

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,27 +14,27 @@ RUN apk add --update --no-cache nginx nodejs nodejs-npm git curl wget gcc ca
1414
apk add glibc-2.28-r0.apk &&\
1515
rm glibc-2.28-r0.apk &&\
1616
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 &&\
1818
npm install -g wizzy &&\
1919
npm cache clean --force
2020

2121
# Checkout the master branches of Graphite, Carbon and Whisper and install from there
2222
RUN mkdir /src &&\
2323
git clone --depth=1 --branch master https://github.com/graphite-project/whisper.git /src/whisper &&\
2424
cd /src/whisper &&\
25-
pip install . --no-cache-dir &&\
25+
pip install . &&\
2626
python setup.py install
2727

2828
RUN git clone --depth=1 --branch master https://github.com/graphite-project/carbon.git /src/carbon &&\
2929
cd /src/carbon &&\
30-
pip install . --no-cache-dir &&\
30+
pip install . &&\
3131
python setup.py install
3232

3333
RUN git clone --depth=1 --branch master https://github.com/graphite-project/graphite-web.git /src/graphite-web &&\
3434
cd /src/graphite-web &&\
35-
pip install . --no-cache-dir &&\
35+
pip install . &&\
3636
python setup.py install &&\
37-
pip install -r requirements.txt --no-cache-dir &&\
37+
pip install -r requirements.txt &&\
3838
python check-dependencies.py
3939

4040
# Install StatsD

0 commit comments

Comments
 (0)