From 59afe953a0729849edb73cefa7bcd27c2cf6def8 Mon Sep 17 00:00:00 2001 From: osama_ops Date: Wed, 5 Aug 2026 10:32:33 +0000 Subject: [PATCH] Update Dockerfile --- Dockerfile | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0ed372f..497ede5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,20 +1,8 @@ FROM python:3.12-slim - -# تثبيت المكتبات العربية الأساسية -RUN apt-get update && apt-get install -y \ - locales \ - && echo "ar_SA.UTF-8 UTF-8" > /etc/locale.gen \ - && locale-gen \ - && rm -rf /var/lib/apt/lists/* - +RUN apt-get update && apt-get install -y locales && echo 'ar_SA.UTF-8 UTF-8' > /etc/locale.gen && locale-gen && rm -rf /var/lib/apt/lists/* ENV LANG=ar_SA.UTF-8 -ENV LC_ALL=ar_SA.UTF-8 - WORKDIR /app - COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt - COPY . . - -CMD ["python", "main.py"] +CMD ['python','main.py']