nicolasIsmaelUTP commited on
Commit
53695c6
·
1 Parent(s): 7c60dc2

ADD: copy model directory to Docker image for access during runtime

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -0
Dockerfile CHANGED
@@ -4,6 +4,8 @@ WORKDIR /app
4
 
5
  COPY api/requirements.txt /app/requirements.txt
6
 
 
 
7
  RUN python -m pip install --upgrade pip \
8
  && pip install -r /app/requirements.txt
9
 
 
4
 
5
  COPY api/requirements.txt /app/requirements.txt
6
 
7
+ COPY model /app/model
8
+
9
  RUN python -m pip install --upgrade pip \
10
  && pip install -r /app/requirements.txt
11