diff --git a/Dockerfile b/Dockerfile index c043300..d5054aa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,9 +2,9 @@ FROM python:3.12.5-slim-bookworm AS pip COPY requirements.txt /tmp/requirements.txt ARG DEBIAN_FRONTEND=noninteractive -RUN apt update && \ - apt upgrade -y && \ - apt install -y ca-certificates && \ +RUN apt-get update && \ + apt-get upgrade -y && \ + apt-get install -y ca-certificates && \ python3 -m venv /usr/local && \ pip install --no-cache-dir -r /tmp/requirements.txt