NotRev commited on
Commit
19f61ea
·
verified ·
1 Parent(s): 1e74907

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -10,7 +10,8 @@ RUN apt-get update && apt-get install -y \
10
 
11
  COPY requirements.txt ./
12
  COPY app.py ./
13
-
 
14
  RUN pip3 install -r requirements.txt
15
 
16
  EXPOSE 8501
 
10
 
11
  COPY requirements.txt ./
12
  COPY app.py ./
13
+ COPY model.pkl ./
14
+ COPY vectorizer.pkl ./
15
  RUN pip3 install -r requirements.txt
16
 
17
  EXPOSE 8501