blob: ec2636423dfa7522237ceafd2e5b218fc345ecdc (
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 sync --deploy --system
ENTRYPOINT ["/sbin/tini", "--"]
CMD ["python", "-m", "bot"]
|