bullyellis commited on
Commit
caa7837
1 Parent(s): ea0cafc

another dockerfile change

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -6,8 +6,9 @@ ENV HOME=/home/user \
6
  WORKDIR $HOME/app
7
  COPY --chown=user . $HOME/app
8
  COPY ./requirements.txt ~/app/requirements.txt
 
9
  RUN chmod -R 777 ~/app/data
10
- RUN chown -R user ~/app/data/embeddings/.lock
11
  RUN pip install -r requirements.txt
12
  COPY . .
13
 
 
6
  WORKDIR $HOME/app
7
  COPY --chown=user . $HOME/app
8
  COPY ./requirements.txt ~/app/requirements.txt
9
+ COPY ./data/collection/.lock ~/app/data/collection/.lock
10
  RUN chmod -R 777 ~/app/data
11
+ RUN chown -R user ~/app/data
12
  RUN pip install -r requirements.txt
13
  COPY . .
14