From 40ca6ac66b0a385bef74848864a107fe12189e23 Mon Sep 17 00:00:00 2001 From: osama_ops Date: Wed, 5 Aug 2026 09:58:25 +0000 Subject: [PATCH] =?UTF-8?q?=D8=A5=D8=B6=D8=A7=D9=81=D8=A9=20Dockerfile=20-?= =?UTF-8?q?=20=D8=A8=D8=B3=D9=85=20=D8=A7=D9=84=D9=84=D9=87=20=D8=A7=D9=84?= =?UTF-8?q?=D8=B1=D8=AD=D9=85=D9=86=20=D8=A7=D9=84=D8=B1=D8=AD=D9=8A=D9=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..0ed372f --- /dev/null +++ b/Dockerfile @@ -0,0 +1,20 @@ +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/* + +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"]