Linhz commited on
Commit
a52ee55
·
verified ·
1 Parent(s): 3b5aa3d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +13 -4
Dockerfile CHANGED
@@ -5,14 +5,23 @@ FROM python:3.8
5
  RUN apt-get update && \
6
  apt-get install -y default-jdk
7
 
8
- # Copy tất cả các file cần thiết vào thư mục /app trong container
9
  WORKDIR /app/
10
- COPY app.py
11
- COPY Model/NER/VLSP2021/Predict_Ner.py Model/NER/VLSP2021/
12
- COPY VnCoreNLP/ VnCoreNLP/
 
 
 
 
 
13
 
14
  # Cài đặt các thư viện Python từ requirements.txt
15
  RUN pip install --no-cache-dir -r requirements.txt
16
 
 
 
 
 
17
  # Câu lệnh chạy ứng dụng khi container được khởi động
18
  CMD ["streamlit", "run", "app.py"]
 
5
  RUN apt-get update && \
6
  apt-get install -y default-jdk
7
 
8
+ # Tạo thư mục /app trong container
9
  WORKDIR /app/
10
+
11
+ # Sao chép tất cả các file cần thiết từ thư mục nguồn vào thư mục /app trong container
12
+ COPY app.py /app/
13
+ COPY Model/NER/VLSP2021/Predict_Ner.py /app/Model/NER/VLSP2021/
14
+ COPY VnCoreNLP/ /app/VnCoreNLP/
15
+
16
+ # Sao chép file requirements.txt từ thư mục nguồn vào thư mục /app trong container
17
+ COPY requirements.txt /app/
18
 
19
  # Cài đặt các thư viện Python từ requirements.txt
20
  RUN pip install --no-cache-dir -r requirements.txt
21
 
22
+ # Thiết lập biến môi trường
23
+ ENV JAVA_HOME /usr/lib/jvm/java-11-openjdk-amd64
24
+ ENV VN_CORE_NLP_HOME /app/VnCoreNLP
25
+
26
  # Câu lệnh chạy ứng dụng khi container được khởi động
27
  CMD ["streamlit", "run", "app.py"]