Spaces:
Runtime error
Runtime error
Create Dockerfile
Browse files- 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"]
|