aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Johannes Christ <[email protected]>2018-09-04 23:18:26 +0200
committerGravatar Johannes Christ <[email protected]>2018-09-04 23:18:26 +0200
commit6a9cf80c6ffeef22ce6bc343877fa47935fc6674 (patch)
tree0d903d3f568ab6cb47e1602bc313e8b1ddb4a92f
parentUse proper WSGI callable. (diff)
Only delete build-time dependencies.
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index fa44b05a..6eb2f6d8 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -13,6 +13,6 @@ COPY . /app
WORKDIR /app
RUN pipenv install --deploy --system
-RUN apk del python3-dev git libpq postgresql-dev gcc cmake autoconf automake musl-dev
+RUN apk del git gcc cmake autoconf automake
CMD ["gunicorn", "--workers", "4", "--bind", "0.0.0.0:4000", "pysite.wsgi:application"]