spmoisa548 commited on
Commit
4e5b2ba
·
verified ·
1 Parent(s): 132e30c

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +13 -0
Dockerfile ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.11-slim
2
+
3
+ WORKDIR /app
4
+
5
+ # Cài thêm tool nếu cần
6
+ RUN apt-get update && apt-get install -y \
7
+ tree \
8
+ && rm -rf /var/lib/apt/lists/*
9
+
10
+ # Script đọc bucket
11
+ COPY read_storage.py .
12
+
13
+ CMD ["python", "read_storage.py"]