From 84ea3b35d276000754df2484d0889b385b2e885f Mon Sep 17 00:00:00 2001 From: Mojtaba-z Date: Sun, 8 Feb 2026 12:39:22 +0330 Subject: [PATCH] fix --> remove libraries gtk fromdockerfile --- Dockerfile | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/Dockerfile b/Dockerfile index bb85b42..9781e9a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # pull official base image -FROM registry.hamdocker.ir/seniorkian/python310-rasaddam:1.0.1 +FROM registry.hamdocker.ir/seniorkian/python310-rasaddam:1.0.0 # Create the app directory RUN #mkdir /app @@ -17,15 +17,15 @@ RUN pip config --user set global.index https://mirror-pypi.runflare.com/simple RUN pip config --user set global.index-url https://mirror-pypi.runflare.com/simple RUN pip config --user set global.trusted-host mirror-pypi.runflare.com RUN pip install --upgrade pip -RUN apt-get update && apt-get install -y \ - libcairo2 \ - libpango-1.0-0 \ - libpangocairo-1.0-0 \ - libgdk-pixbuf2.0-0 \ - libffi-dev \ - shared-mime-info \ - fonts-dejavu \ - && rm -rf /var/lib/apt/lists/* +#RUN apt-get update && apt-get install -y \ +# libcairo2 \ +# libpango-1.0-0 \ +# libpangocairo-1.0-0 \ +# libgdk-pixbuf2.0-0 \ +# libffi-dev \ +# shared-mime-info \ +# fonts-dejavu \ +# && rm -rf /var/lib/apt/lists/* COPY ./requirements.txt . RUN pip install --no-cache-dir -r requirements.txt