Linhz commited on
Commit
617ff54
1 Parent(s): 0416eb7

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -27
Dockerfile DELETED
@@ -1,27 +0,0 @@
1
- # Sử dụng một base image có sẵn
2
- FROM python:3.8
3
-
4
- # Cài đặt OpenJDK (Java Development Kit)
5
- RUN apt-get update && \
6
- apt-get install -y default-jdk
7
-
8
- # Tạo thư mục /app trong container
9
- WORKDIR ViMNer/
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 ViMNer/app.py
13
- COPY ViMNer/Model/NER/VLSP2021/Predict_Ner.py
14
- COPY ViMNer/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 ViMNer/VnCoreNLP
25
-
26
- # Câu lệnh chạy ứng dụng khi container được khởi động
27
- CMD ["streamlit", "run", "app.py"]