aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Copeland <ben.copeland@linaro.org>2018-10-19 13:28:16 +0000
committerLinaro Code Review <review@review.linaro.org>2018-10-19 13:28:16 +0000
commit5e8bc82d65013f11a65276f87e80d5337985cba4 (patch)
treededc0368312306c2bc702e3d941764ecfa7d3f2b
parent356c79b310ffd09506233ab6ca79305f63bf1be8 (diff)
parentbb889f62b38fb00cde5531cc3da6b02cdb64e193 (diff)
Merge "LLP: Update apk settings"
-rw-r--r--ci-amd64-llp-alpine/Dockerfile13
1 files changed, 7 insertions, 6 deletions
diff --git a/ci-amd64-llp-alpine/Dockerfile b/ci-amd64-llp-alpine/Dockerfile
index ee804cdf..0a5e28af 100644
--- a/ci-amd64-llp-alpine/Dockerfile
+++ b/ci-amd64-llp-alpine/Dockerfile
@@ -12,12 +12,13 @@ RUN mkdir -p $APPDIR
WORKDIR $APPDIR
-RUN apk --update --no-cache add python2 py2-pip mysql-client git py-gunicorn sqlite && \
- apk --no-cache add gcc g++ python2-dev musl-dev libffi-dev postgresql-dev && \
- git clone https://git.linaro.org/infrastructure/linaro-license-protection.git/ $APPDIR && \
- pip2 install --upgrade pip setuptools six && \
- pip2 install -U -r $APPDIR/requirements.txt && \
- apk del gcc g++ python3-dev musl-dev libffi-dev
+RUN apk update && \
+ apk --no-cache add python2 py2-pip mysql-client git py-gunicorn sqlite && \
+ apk --no-cache add gcc g++ python2-dev musl-dev libffi-dev postgresql-dev && \
+ git clone https://git.linaro.org/infrastructure/linaro-license-protection.git/ $APPDIR && \
+ pip2 install --upgrade pip setuptools six && \
+ pip2 install -U -r $APPDIR/requirements.txt && \
+ apk del gcc g++ python3-dev musl-dev libffi-dev
EXPOSE $PORT