From ac6fbd1b82059c7af589b5ec30742895d5f64076 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=B6=B5=E6=9B=A6?= Date: Wed, 30 Oct 2024 09:25:29 +0800 Subject: [PATCH] Update Dockerfile.base --- Dockerfile.base | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Dockerfile.base b/Dockerfile.base index d4ca494..0574c1f 100644 --- a/Dockerfile.base +++ b/Dockerfile.base @@ -1,12 +1,13 @@ FROM python:3.10-slim ENV DEBIAN_FRONTEND=noninteractive -WORKDIR /app -COPY install_dependencies.sh . -RUN bash install_dependencies.sh RUN apt-get update && apt-get install -y \ + wget \ libtiff6 \ libopenjp2-7 \ libxcb1 \ && rm -rf /var/lib/apt/lists/* +WORKDIR /app +COPY install_dependencies.sh . +RUN bash install_dependencies.sh