Spaces:
Sleeping
Sleeping
File size: 744 Bytes
0cad66c 7375d91 0cad66c 7375d91 0cad66c 7375d91 0cad66c 7375d91 0cad66c 7375d91 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
# ใช้ 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"]
|