From d8628581535d7879ebd62b2b19aad8a32502c2ae Mon Sep 17 00:00:00 2001 From: Johannes Christ Date: Sun, 16 Sep 2018 23:10:13 +0200 Subject: Back to the roots. --- Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile index 9100783b..67a12bd1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,13 +1,11 @@ FROM python:3.7-alpine RUN apk add python3-dev git libpq postgresql-dev gcc cmake autoconf automake musl-dev -RUN python3 -m pip install poetry COPY . /app WORKDIR /app -RUN python3 -m poetry config settings.virtualenvs.in-project true -RUN poetry install --no-dev +RUN python3 -m pip install .[deploy] RUN apk del git gcc cmake autoconf automake CMD ["gunicorn", "--workers", "4", "--bind", "0.0.0.0:4000", "pysite.wsgi:application"] -- cgit v1.2.3