diff --git a/Dockerfile b/Dockerfile index b761e72..61433da 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 +COPY requirements.txt ./ RUN pip install --no-cache-dir -r requirements.txt COPY . . CMD ["bot.py"]