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 -U pipenv RUN mkdir -p /bot COPY . /bot WORKDIR /bot RUN pipenv install --deploy ENTRYPOINT ["/sbin/tini", "--"] CMD ["pipenv", "run", "start"]