blob: cf53d2fb9576f584f9c7d7949a52264c93e376d9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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 sync
ENTRYPOINT ["/sbin/tini", "--"]
CMD ["pipenv", "run", "python", "-m", "bot"]
|