diff options
author | 2018-11-17 00:08:35 +0000 | |
---|---|---|
committer | 2018-11-17 00:08:35 +0000 | |
commit | 6853c55b9fb07d6c2ec0261bff647db8cb4cd655 (patch) | |
tree | 4886e8d4938f62114c6aeb5092e768b4ee7302e2 | |
parent | Skipping the lock operation makes pipenv slower somehow. Don't ask me why. (diff) |
Reitz sez: Try --sequential
-rw-r--r-- | docker/bot.Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/bot.Dockerfile b/docker/bot.Dockerfile index 4713e1f0e..d4968fbfa 100644 --- a/docker/bot.Dockerfile +++ b/docker/bot.Dockerfile @@ -8,7 +8,7 @@ ENV PIPENV_HIDE_EMOJIS=1 COPY . /bot WORKDIR /bot -RUN pipenv install --deploy --system +RUN pipenv install --deploy --system --sequential ENTRYPOINT ["/sbin/tini", "--"] CMD ["python", "-m", "bot"] |