htg2501 commited on
Commit
aba4888
·
verified ·
1 Parent(s): 8fdb8bf

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -23
Dockerfile DELETED
@@ -1,23 +0,0 @@
1
- FROM python:3.9-slim
2
-
3
- WORKDIR /app
4
-
5
- # Cài thư viện hệ thống cần thiết
6
- RUN apt-get update && apt-get install -y \
7
- build-essential \
8
- git \
9
- && rm -rf /var/lib/apt/lists/*
10
-
11
- # Copy requirements trước để cache
12
- COPY requirements.txt .
13
-
14
- RUN pip install --no-cache-dir -r requirements.txt
15
-
16
- # Copy toàn bộ source code + model
17
- COPY . .
18
-
19
- # Expose port cho HF
20
- EXPOSE 7860
21
-
22
- # Chạy Streamlit
23
- CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"]