Ludovicollin commited on
Commit
8c84485
·
1 Parent(s): a3a66a1

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -4
Dockerfile CHANGED
@@ -7,9 +7,8 @@ WORKDIR $HOME/app
7
  COPY --chown=user . $HOME/app
8
  COPY ./requirements.txt ~/app/requirements.txt
9
  RUN pip install -r requirements.txt
10
- RUN chmod 777 ./.chainlit
11
- RUN chmod 777 ./.chainlit/download_offre_formation.txt
12
- RUN chmod 777 ./.chainlit/download_QA_emplois.txt
13
- RUN chmod 777 ./.chainlit/download_emplois.txt
14
  COPY . .
15
  CMD ["chainlit", "run", "main.py", "--port", "7860"]
 
7
  COPY --chown=user . $HOME/app
8
  COPY ./requirements.txt ~/app/requirements.txt
9
  RUN pip install -r requirements.txt
10
+ COPY ./.chainlit/download_offre_formation.txt ~/app/download_offre_formation.txt
11
+ COPY ./.chainlit/download_QA_emplois.txt ~/app/download_QA_emplois.txt
12
+ COPY ./.chainlit/download_emplois.txt ~/app/download_emplois.txt
 
13
  COPY . .
14
  CMD ["chainlit", "run", "main.py", "--port", "7860"]