diff options
| author | 2018-05-19 20:43:58 +0200 | |
|---|---|---|
| committer | 2018-05-19 20:43:58 +0200 | |
| commit | 44c0545e47c5f64442327eab9c8f4bad4b2f03c7 (patch) | |
| tree | 617abcc2cc2322b6319a0dd9131568913baeadf6 /docker | |
| parent | Merge branch 'master' of github.com:discord-python/bot (diff) | |
fix pillow install and update pipenv lock
Diffstat (limited to 'docker')
| -rw-r--r-- | docker/Dockerfile.base | 4 | 
1 files changed, 4 insertions, 0 deletions
diff --git a/docker/Dockerfile.base b/docker/Dockerfile.base index 7183bd2fa..a80ba1531 100644 --- a/docker/Dockerfile.base +++ b/docker/Dockerfile.base @@ -4,6 +4,9 @@ RUN apk add --update tini  RUN apk add --update build-base  RUN apk add --update libffi-dev  RUN apk add --update zlib +RUN apk add --update jpeg-dev +RUN apk add --update zlib-dev +  RUN pip install pipenv  RUN mkdir /bot @@ -11,6 +14,7 @@ COPY Pipfile /bot  COPY Pipfile.lock /bot  WORKDIR /bot +ENV LIBRARY_PATH=/lib:/usr/lib  ENV PIPENV_VENV_IN_PROJECT=1  ENV PIPENV_IGNORE_VIRTUALENVS=1  ENV PIPENV_NOSPIN=1  |