blob: 350e38ec06c3758d0c30f703c46ee761f6132837 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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"]
|