From 8b989ba77fbcbdb21c63723e1c46ae9bfb1be829 Mon Sep 17 00:00:00 2001 From: TatLead Date: Wed, 13 Mar 2024 06:11:54 +0000 Subject: [PATCH] Update Dockerfile --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index e9d3445..c44766f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,10 @@ # Dockerfile -FROM python:3.12-alpine +FROM python:3.11-alpine WORKDIR /app COPY requirements.txt requirements.txt -RUN pip install --no-cache-dir -r requirements.txt +RUN apk add --no-cache python3-dev \ + && pip install --no-cache-dir -r requirements.txt COPY . .