Spaces:
Sleeping
Sleeping
# ใช้ Python เวอร์ชัน 3.10 ที่รองรับแพ็กเกจทั้งหมด | |
FROM python:3.10 | |
# กำหนด working directory | |
WORKDIR /app | |
# อัปเดต pip เป็นเวอร์ชันล่าสุดก่อนติดตั้ง dependencies | |
RUN pip install --upgrade pip | |
# คัดลอก requirements.txt และติดตั้ง dependencies | |
COPY requirements.txt . | |
RUN pip install --no-cache-dir -r requirements.txt | |
# คัดลอกโค้ดทั้งหมดเข้า container | |
COPY . . | |
# เปิดพอร์ต 7860 (ใช้สำหรับ FastAPI) | |
EXPOSE 7860 | |
# รันแอปพลิเคชัน | |
CMD ["python", "app.py"] | |