blob: d4968fbfa510e1bc74018081730905b3e3cc075e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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
COPY . /bot
WORKDIR /bot
RUN pipenv install --deploy --system --sequential
ENTRYPOINT ["/sbin/tini", "--"]
CMD ["python", "-m", "bot"]
|