aboutsummaryrefslogtreecommitdiffstats
path: root/docker/Dockerfile.base
diff options
context:
space:
mode:
authorGravatar Johannes Christ <[email protected]>2018-08-31 21:04:15 +0000
committerGravatar Johannes Christ <[email protected]>2018-08-31 21:04:15 +0000
commit52462b6fc5be74a6150530218ebe1b24e5e899e5 (patch)
tree8c6e0c238e25225fd55da0f99bb3aedcb9847aae /docker/Dockerfile.base
parentAdd a `Dockerfile`. (diff)
parentAlways upload cov reports, add pipenv cache. (diff)
Merge branch 'django+add-gitlab-ci' into 'django'
Django - Add GitLab CI. See merge request python-discord/projects/site!36
Diffstat (limited to 'docker/Dockerfile.base')
-rw-r--r--docker/Dockerfile.base25
1 files changed, 0 insertions, 25 deletions
diff --git a/docker/Dockerfile.base b/docker/Dockerfile.base
deleted file mode 100644
index 7119d770..00000000
--- a/docker/Dockerfile.base
+++ /dev/null
@@ -1,25 +0,0 @@
-FROM python:3.6-alpine3.7
-
-RUN apk add --update tini
-RUN apk add --update git
-RUN apk add --update build-base
-RUN apk add --update gcc
-RUN apk add --update cmake
-RUN apk add --update autoconf
-RUN apk add --update automake
-RUN apk add --update libtool
-
-ENV PIPENV_VENV_IN_PROJECT=1
-ENV PIPENV_IGNORE_VIRTUALENVS=1
-ENV PIPENV_NOSPIN=1
-ENV PIPENV_HIDE_EMOJIS=1
-
-RUN pip install pipenv
-
-RUN mkdir -p /site
-COPY Pipfile /site
-COPY Pipfile.lock /site
-WORKDIR /site
-ENV PYTHONPATH=/site
-
-RUN pipenv sync