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 . .