Update Add Python

This commit is contained in:
servdal
2025-07-16 18:21:10 +07:00
parent 87255f9965
commit cedb72d57f
3 changed files with 24 additions and 5 deletions

View File

@@ -0,0 +1,11 @@
FROM python:3.11-slim
WORKDIR /app
COPY app.py .
# Jika ada requirements.txt, tambahkan:
# COPY requirements.txt .
# RUN pip install --no-cache-dir -r requirements.txt
CMD ["python", "app.py"]