NEXARA_DockerSpace / Dockerfile
NextAITeam's picture
Update Dockerfile
4dce9fa verified
Raw
History Blame Contribute Delete
499 Bytes
FROM python:3.9-slim-bookworm
# نصب وابستگی‌های سیستمی
RUN apt-get update && apt-get install -y \
git \
git-lfs \
ffmpeg \
libsm6 \
libxext6 \
cmake \
rsync \
libgl1 \
&& rm -rf /var/lib/apt/lists/* \
&& git lfs install
# کپی فایل‌های پروژه
COPY . /app
WORKDIR /app
# نصب وابستگی‌های پایتون
RUN pip install --no-cache-dir -r requirements.txt
# اجرای اپلیکیشن
CMD ["python", "app.py"]