From 800fecbf2009a0706d8621fb82a6634e4f11702f Mon Sep 17 00:00:00 2001 From: Siphalor Date: Tue, 3 Aug 2021 14:26:11 +0200 Subject: [PATCH] Make git available in container --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b761e72..953b61f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM python:3.9.1-alpine WORKDIR /usr/src/app COPY requirements.txt ./ -RUN apk add ffmpeg musl-dev linux-headers gcc libffi-dev make opus +RUN apk add ffmpeg musl-dev linux-headers gcc libffi-dev make opus git RUN pip install --no-cache-dir -r requirements.txt COPY . . CMD ["bot.py"]