aboutsummaryrefslogtreecommitdiffstats
path: root/docker
diff options
context:
space:
mode:
authorGravatar Johannes Christ <[email protected]>2019-04-10 21:50:34 +0200
committerGravatar Johannes Christ <[email protected]>2019-04-10 21:50:34 +0200
commit21712f6a1bc6af2230db11954b041e9a307e0947 (patch)
tree2a7fb8a6c588a965cb1f01b0d7af4a96a65645d1 /docker
parentMake the pipeline green as grass. (diff)
Only install uWSGI in Docker.
Diffstat (limited to 'docker')
-rw-r--r--docker/app/Dockerfile3
1 files changed, 2 insertions, 1 deletions
diff --git a/docker/app/Dockerfile b/docker/app/Dockerfile
index 93d0c378..b12da08f 100644
--- a/docker/app/Dockerfile
+++ b/docker/app/Dockerfile
@@ -28,7 +28,8 @@ RUN rm -r /opt/bitnami/python/lib/python3.*/site-packages/setuptools* && \
pip install --no-cache-dir -U setuptools
RUN python3 -m pip install pipenv \
- && python3 -m pipenv install --dev --system --deploy
+ && python3 -m pipenv install --dev --system --deploy \
+ && pip install uwsgi==2.0.18
COPY . .