diff --git a/Dockerfile b/Dockerfile index d0b8e6d..e9d3445 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,8 +4,6 @@ FROM python:3.12-alpine WORKDIR /app COPY requirements.txt requirements.txt -RUN apk add --no-cache gcc musl-dev linux-headers \ - && pip install -r requirements.txt \ - && apk del musl-dev linux-headers +RUN pip install --no-cache-dir -r requirements.txt COPY . .