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