phamluan commited on
Commit
084937e
·
1 Parent(s): 9a15f3e
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -3,6 +3,9 @@ FROM python:3.9-slim
3
  # Cài các thư viện cần thiết
4
  RUN pip install --no-cache-dir fastapi uvicorn transformers pydantic
5
 
 
 
 
6
  # Làm việc trong thư mục app
7
  WORKDIR /app
8
 
 
3
  # Cài các thư viện cần thiết
4
  RUN pip install --no-cache-dir fastapi uvicorn transformers pydantic
5
 
6
+ # Copy toàn bộ thư mục app
7
+ COPY app /app
8
+
9
  # Làm việc trong thư mục app
10
  WORKDIR /app
11