diff options
author | 2019-04-16 14:16:38 +0200 | |
---|---|---|
committer | 2019-04-16 14:16:38 +0200 | |
commit | da7a5701f1dae277aab4c4947fe7d23fe02987bd (patch) | |
tree | f8f8c683664a02a9fd1860c8bb99b6645e74a651 /docker | |
parent | refactoring slightly to use a class-based view, changing home to main. Ready ... (diff) | |
parent | Merge pull request #207 from python-discord/api/split-models (diff) |
merging in changes from the main branch
Diffstat (limited to 'docker')
-rw-r--r-- | docker/app/Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docker/app/Dockerfile b/docker/app/Dockerfile index 93d0c378..5b965740 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 --system --deploy \ + && pip install uwsgi==2.0.18 COPY . . |