Spaces:
Sleeping
Sleeping
File size: 307 Bytes
8e0b3a2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
# Gunakan image Python
FROM python:3.9
# Set direktori kerja
WORKDIR /app
# Salin semua file ke container
COPY . .
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Jalankan aplikasi FastAPI menggunakan Uvicorn
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|