diff options
author | 2018-04-30 16:05:37 +0200 | |
---|---|---|
committer | 2018-04-30 16:05:37 +0200 | |
commit | df0fcb5a83c22c4914437060bbe395b5724ef9ad (patch) | |
tree | 5ff16c97470282b29b2a6adce367df6c29171736 /Dockerfile | |
parent | Critical fix: python parsing broken with previous merge. This should fix it, ... (diff) |
restructure docker files
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 350e38ec0..000000000 --- a/Dockerfile +++ /dev/null @@ -1,17 +0,0 @@ -FROM pythondiscord/bot-base:latest - -ENV PIPENV_VENV_IN_PROJECT=1 -ENV PIPENV_IGNORE_VIRTUALENVS=1 -ENV PIPENV_NOSPIN=1 -ENV PIPENV_HIDE_EMOJIS=1 - -RUN pip install pipenv - -COPY . /bot -WORKDIR /bot - -RUN pipenv clean -RUN pipenv sync - -ENTRYPOINT ["/sbin/tini", "--"] -CMD ["pipenv", "run", "start"] |