File size: 502 Bytes
e4d7a7e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
# ใช้ Python 3.10 เป็น base image
FROM python:3.10
# ติดตั้ง dependencies ระบบ
RUN apt-get update && apt-get install -y libgl1-mesa-glx
# กำหนดโฟลเดอร์ทำงาน
WORKDIR /app
# คัดลอกไฟล์โปรเจคทั้งหมดไปยัง container
COPY . .
# ติดตั้ง Python dependencies
RUN pip install -r requirements.txt
# รันแอปพลิเคชัน
CMD ["python", "app.py"] |