From f5097a9d2d2c9a5cbc62015388f1ae6cc7e3eeae Mon Sep 17 00:00:00 2001 From: Vivek Santayana Date: Fri, 21 Jan 2022 21:37:24 +0000 Subject: [PATCH] Defined specific version number for image Later images break wheel again. --- app/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Dockerfile b/app/Dockerfile index dc42477..9bf57d0 100644 --- a/app/Dockerfile +++ b/app/Dockerfile @@ -1,7 +1,7 @@ -FROM python:slim +FROM python:3.9.6-slim COPY . /usr/src/app WORKDIR /usr/src/app RUN apt-get update -y && apt-get upgrade -y && apt-get install libopus0 -y && \ - pip install --upgrade pip && pip install -r requirements.txt && \ + pip install --upgrade pip setuptools wheel && pip install -r requirements.txt && \ apt-get autoremove -y CMD python3 -u ./bot.py \ No newline at end of file