From 28aa74394774a5268a6ed3c9ca98f0b3c9744031 Mon Sep 17 00:00:00 2001 From: Ske087 Date: Mon, 27 Jan 2025 17:25:25 +0200 Subject: [PATCH] final 1 --- Dockerfile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Dockerfile b/Dockerfile index 968079b..dbbc95e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,12 +13,17 @@ RUN apt-get update && apt-get install -y \ cargo \ g++ \ curl \ + libjpeg-dev \ + zlib1g-dev \ && rm -rf /var/lib/apt/lists/* # Install Rust RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y ENV PATH="/root/.cargo/bin:${PATH}" +# Upgrade pip to the latest version +RUN pip install --upgrade pip + # Copy the current directory contents into the container at /app COPY . /app @@ -37,6 +42,8 @@ RUN apt-get update && apt-get install -y \ libssl-dev \ g++ \ curl \ + libjpeg-dev \ + zlib1g-dev \ && rm -rf /var/lib/apt/lists/* # Install Rust