diff options
Diffstat (limited to 'docker/app/stretch/3.7')
-rw-r--r-- | docker/app/stretch/3.7/Dockerfile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docker/app/stretch/3.7/Dockerfile b/docker/app/stretch/3.7/Dockerfile index 70d18dbc..1e832e32 100644 --- a/docker/app/stretch/3.7/Dockerfile +++ b/docker/app/stretch/3.7/Dockerfile @@ -14,6 +14,8 @@ RUN python3 -m pip install .[$EXTRAS] COPY . . RUN apt-get purge -y \ - gcc + gcc \ + libc-dev \ + libpq-dev CMD ["gunicorn", "--workers", "4", "--bind", "0.0.0.0:4000", "pysite.wsgi:applicati |