dl / Dockerfile
minhduongts13's picture
Upload scripts
fa7b4fe verified
Raw
History Blame Contribute Delete
382 Bytes
FROM python:3.9-slim
WORKDIR /app
# Cài đặt các thư viện
COPY requirements.txt .
# Thêm --no-cache-dir để giảm dung lượng
RUN pip install --no-cache-dir -r requirements.txt
# Copy toàn bộ code và model vào
COPY . .
# Chạy FastAPI ở cổng 7860 (Cổng mặc định của Hugging Face)
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]