diff --git a/Dockerfile b/Dockerfile index 610ad5e..49b9f1e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,12 +2,11 @@ FROM python:3.10-slim WORKDIR /code -RUN apt-get update && apt-get install -y \ +RUN apt-get update && apt-get install -y --no-install-recommends \ build-essential \ curl \ - software-properties-common \ git \ - && rm -rf /var/lib/apt/lists/* + && rm -rf /var/lib/apt/lists/* COPY . .