File size: 437 Bytes
5e25c23 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | # Gunakan Python base image
FROM python:3.11-slim-bookworm
# Set working directory
WORKDIR /app
# Copy semua file
COPY . .
# Update system packages to reduce vulnerabilities
RUN apt-get update && apt-get upgrade -y && apt-get clean
# Install dependensi
RUN pip install --upgrade pip
RUN pip install -r requirements.txt
# Expose port
EXPOSE 8000
# Jalankan aplikasi
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|