aboutsummaryrefslogtreecommitdiffstats
path: root/docker
diff options
context:
space:
mode:
authorGravatar Joseph <[email protected]>2018-06-13 21:12:52 +0100
committerGravatar Joseph <[email protected]>2018-06-13 21:12:52 +0100
commitcfb02eaeaea37da231d490f701e3aa017fc6494b (patch)
tree491ab31f565eb687ec07ad7bb4b3e4f702a06b54 /docker
parentRevert "Cast to list in events.py so there is no 'filter object does not have... (diff)
parentMerge branch 'ci-container' into 'master' (diff)
Merge branch 'master' of gitlab.com:python-discord/projects/bot
Diffstat (limited to 'docker')
-rw-r--r--docker/ci.Dockerfile20
1 files changed, 20 insertions, 0 deletions
diff --git a/docker/ci.Dockerfile b/docker/ci.Dockerfile
new file mode 100644
index 000000000..fd7e25239
--- /dev/null
+++ b/docker/ci.Dockerfile
@@ -0,0 +1,20 @@
+FROM python:3.6-alpine3.7
+
+RUN apk add --update docker \
+ curl \
+ tini \
+ build-base \
+ libffi-dev \
+ zlib \
+ jpeg-dev \
+ libxml2 libxml2-dev libxslt-dev \
+ zlib-dev \
+ freetype-dev
+
+RUN pip install pipenv
+
+ENV LIBRARY_PATH=/lib:/usr/lib
+ENV PIPENV_VENV_IN_PROJECT=1
+ENV PIPENV_IGNORE_VIRTUALENVS=1
+ENV PIPENV_NOSPIN=1
+ENV PIPENV_HIDE_EMOJIS=1