File size: 232 Bytes
3bff755
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Gunakan base image Python
FROM python:3.10

# Set work directory
WORKDIR /app

# Copy semua file ke dalam container
COPY . .

# Install dependencies
RUN pip install -r requirements.txt

# Jalankan aplikasi
CMD ["python", "app.py"]