diff options
| author | 2019-09-18 14:00:57 -0700 | |
|---|---|---|
| committer | 2019-09-18 14:10:06 -0700 | |
| commit | 2ac0c6df978f20a488b3eb026753c8a972cb2554 (patch) | |
| tree | 43fc70b14b517139dea5324e762ba92a9e211e28 /Dockerfile | |
| parent | Docstring linting chunk 7 (diff) | |
| parent | Merge pull request #436 from python-discord/enhance-offtopicnames-search (diff) | |
Merge branch 'master' into flake8-plugins
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/Dockerfile b/Dockerfile index 864b4e557..aa6333380 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,15 +14,7 @@ RUN apk add --no-cache \ zlib-dev ENV \ - LIBRARY_PATH=/lib:/usr/lib \ - PIPENV_HIDE_EMOJIS=1 \ - PIPENV_HIDE_EMOJIS=1 \ - PIPENV_IGNORE_VIRTUALENVS=1 \ - PIPENV_IGNORE_VIRTUALENVS=1 \ - PIPENV_NOSPIN=1 \ - PIPENV_NOSPIN=1 \ - PIPENV_VENV_IN_PROJECT=1 \ - PIPENV_VENV_IN_PROJECT=1 + LIBRARY_PATH=/lib:/usr/lib RUN pip install -U pipenv @@ -32,4 +24,4 @@ COPY . . RUN pipenv install --deploy --system ENTRYPOINT ["/sbin/tini", "--"] -CMD ["pipenv", "run", "start"] +CMD ["python3", "-m", "bot"] |