Spaces:
Paused
Paused
| FROM python:3.9-slim | |
| # Install bash agar terminal (pty) bisa berjalan dengan baik | |
| RUN apt-get update && apt-get install -y bash && rm -rf /var/lib/apt/lists/* | |
| WORKDIR /app | |
| # Salin file requirements.txt dan install dependensinya | |
| COPY requirements.txt . | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| # Salin skrip utama | |
| COPY app.py . | |
| # Jalankan skrip Python | |
| CMD ["python", "app.py"] |