Spaces:
Runtime error
Runtime error
File size: 484 Bytes
9b8d65b 4268dd8 9b8d65b 4268dd8 9b8d65b 4268dd8 9b8d65b 4268dd8 9b8d65b 4268dd8 9b8d65b 4268dd8 9b8d65b 4268dd8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
# 1️⃣ Official Python Image Use Karo (Nvidia CUDA Image ki zaroorat nahi)
FROM python:3.10
# 2️⃣ Working Directory Set Karo
WORKDIR /app
# 3️⃣ System Dependencies Install Karo
RUN apt update && apt install -y git
# 4️⃣ Copy Requirements & Install Dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# 5️⃣ Copy Project Files
COPY . .
# 6️⃣ Expose API Port
EXPOSE 7860
# 7️⃣ Run Server
CMD ["python3", "server.py"] |