Make git available in container

This commit is contained in:
2021-08-03 14:26:11 +02:00
parent 9c0adf1cae
commit 800fecbf20

View File

@@ -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"]