aboutsummaryrefslogtreecommitdiffstats
path: root/docker
diff options
context:
space:
mode:
authorGravatar Johannes Christ <[email protected]>2018-09-03 21:46:38 +0200
committerGravatar Johannes Christ <[email protected]>2018-09-03 21:46:38 +0200
commit087a667f7de43b87d672ef7e0b2d235295431cdd (patch)
tree27ef17764c3f32b01e8b8391962060cbe253e8a2 /docker
parentLinewrap import. (diff)
Try using local registry.
Diffstat (limited to 'docker')
-rw-r--r--docker/base.Dockerfile18
1 files changed, 0 insertions, 18 deletions
diff --git a/docker/base.Dockerfile b/docker/base.Dockerfile
deleted file mode 100644
index c90ee5dc..00000000
--- a/docker/base.Dockerfile
+++ /dev/null
@@ -1,18 +0,0 @@
-# Base image used for building the site.
-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"]