aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
blob: 0db0b0efd880a5c14e7bdc3f056b431a60355219 (plain) (blame)
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
33
34
35
36
37
38
FROM python:3.8-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 git to be able to dowload git dependencies in the Pipfile
RUN apt-get -y update \
    && apt-get install -y \
        ffmpeg \
    && rm -rf /var/lib/apt/lists/*

# Install pipenv
RUN pip install -U pipenv

# Copy the project files into working directory
WORKDIR /bot

# Copy dependency files
COPY Pipfile Pipfile.lock ./

# Install project dependencies
RUN pipenv install --deploy --system

# Copy project code
COPY . .

# Set Git SHA enviroment variable
ARG git_sha="development"
ENV GIT_SHA=$git_sha

ENTRYPOINT ["python"]
CMD ["-m", "bot"]

# Define docker persistent volumes
VOLUME /bot/bot/log /bot/data