marianeft commited on
Commit
aa8cb46
·
verified ·
1 Parent(s): 6388999

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -11,9 +11,12 @@ RUN apt-get update && apt-get install -y \
11
 
12
  COPY requirements.txt ./
13
  COPY src/ ./src/
 
14
 
15
  RUN pip3 install -r requirements.txt
16
 
 
 
17
  EXPOSE 8501
18
 
19
  HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health
 
11
 
12
  COPY requirements.txt ./
13
  COPY src/ ./src/
14
+ COPY models/ ./models/
15
 
16
  RUN pip3 install -r requirements.txt
17
 
18
+ ENV PYTHONPATH="${PYTHONPATH}:/app"
19
+
20
  EXPOSE 8501
21
 
22
  HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health