diff options
| author | 2018-08-31 21:04:15 +0000 | |
|---|---|---|
| committer | 2018-08-31 21:04:15 +0000 | |
| commit | 52462b6fc5be74a6150530218ebe1b24e5e899e5 (patch) | |
| tree | 8c6e0c238e25225fd55da0f99bb3aedcb9847aae /docker/Dockerfile.base | |
| parent | Add a `Dockerfile`. (diff) | |
| parent | Always 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.base | 25 | 
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  |