blob: 271c250504ce7ed1e7abea6ae2e86d726bf6b723 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
FROM python:3.7-slim
# Set pip to have cleaner logs and no saved cache
ENV PIP_NO_CACHE_DIR=false \
PIPENV_HIDE_EMOJIS=1 \
PIPENV_IGNORE_VIRTUALENVS=1 \
PIPENV_NOSPIN=1
# Install pipenv
RUN pip install -U pipenv
# Copy project files into working directory
WORKDIR /bot
COPY . .
# Install project dependencies
RUN pipenv install --system --deploy
ENTRYPOINT ["python3"]
CMD ["-m", "bot"]
|