Alvin2707's picture
Upload 5 files
3ef61d8 verified
raw
history blame
347 Bytes
# Gunakan image Python yang ringan
FROM python:3.10-slim
# Set working directory
WORKDIR /app
# Salin dependensi
COPY requirements.txt .
# Install dependensi
RUN pip install --no-cache-dir -r requirements.txt
# Salin kode aplikasi
COPY . .
# Jalankan FastAPI
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]