From 8a9fcebe38dd83d4047b8a6c785a4a274bafb0c0 Mon Sep 17 00:00:00 2001 From: Istoleyourbutter Date: Mon, 12 Aug 2024 18:14:31 -0400 Subject: [PATCH] Update Dockerfile --- Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ffc15d6..af1a9c4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,6 +7,8 @@ RUN apt-get update \ build-essential \ libffi-dev \ libssl-dev \ + libxml2-dev \ + libxslt-dev \ curl \ && rm -rf /var/lib/apt/lists/* @@ -15,8 +17,8 @@ WORKDIR /app # Copy and install dependencies COPY requirements.txt . -RUN pip install --upgrade pip \ - && pip install -r requirements.txt --break-system-packages +RUN pip install --upgrade pip==23.1.2 \ + && pip install --no-cache-dir -r requirements.txt --break-system-packages # Copy application code COPY . .