forked from python-discord/bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
32 lines (24 loc) · 657 Bytes
/
Dockerfile
File metadata and controls
32 lines (24 loc) · 657 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
FROM python:3.8-slim
# Define Git SHA build argument
ARG git_sha="development"
# 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 \
GIT_SHA=$git_sha
RUN apt-get -y update \
&& apt-get install -y \
git \
&& rm -rf /var/lib/apt/lists/*
# Install pipenv
RUN pip install -U pipenv
# Create the working directory
WORKDIR /bot
# Install project dependencies
COPY Pipfile* ./
RUN pipenv install --system --deploy
# Copy the source code in last to optimize rebuilding the image
COPY . .
ENTRYPOINT ["python3"]
CMD ["-m", "bot"]