Really-amin's picture
Upload 15 files
3947f52 verified
raw
history blame
320 Bytes
FROM python:3.10-slim
WORKDIR /app
# نصب وابستگی‌ها
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# کپی فایل‌های پروژه
COPY . .
# ایجاد پوشه‌های مورد نیاز
RUN mkdir -p templates
# اجرای اپلیکیشن
CMD ["python", "app.py"]