From 087a667f7de43b87d672ef7e0b2d235295431cdd Mon Sep 17 00:00:00 2001 From: Johannes Christ Date: Mon, 3 Sep 2018 21:46:38 +0200 Subject: Try using local registry. --- Dockerfile | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile index c4489027..7252598d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1 +1,17 @@ -FROM registry.gitlab.com/python-discord/projects/site/django-base:latest +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 pipenv + +ENV PIPENV_HIDE_EMOJIS=1 +ENV PIPENV_IGNORE_VIRTUALENVS=1 +ENV PIPENV_MAX_SUBPROCESS=2 +ENV PIPENV_NOSPIN=1 +ENV PIPENV_VENV_IN_PROJECT=1 + +COPY . /app +WORKDIR /app + +RUN pipenv install --deploy --system + +CMD ["gunicorn", "--workers", "4", "--bind", "0.0.0.0:4000", "pysite:wsgi"] -- cgit v1.2.3