bunnybun07 commited on
Commit
3bff755
·
verified ·
1 Parent(s): f9a1ce9

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +14 -0
Dockerfile ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Gunakan base image Python
2
+ FROM python:3.10
3
+
4
+ # Set work directory
5
+ WORKDIR /app
6
+
7
+ # Copy semua file ke dalam container
8
+ COPY . .
9
+
10
+ # Install dependencies
11
+ RUN pip install -r requirements.txt
12
+
13
+ # Jalankan aplikasi
14
+ CMD ["python", "app.py"]