minhdang14902 commited on
Commit
1f279b2
·
verified ·
1 Parent(s): 6c2841a

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +14 -0
Dockerfile ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Sử dụng một image Python làm base
2
+ FROM python:3.8-slim
3
+
4
+
5
+
6
+
7
+ # Copy toàn bộ mã nguồn vào container
8
+ COPY . /app
9
+
10
+ # Thiết lập thư mục làm việc
11
+ WORKDIR /app
12
+
13
+ # Command để chạy ứng dụng
14
+ CMD ["python", "app.py"]