likhithv commited on
Commit
236a5f4
1 Parent(s): c523dd3

updated dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -6
Dockerfile CHANGED
@@ -28,12 +28,12 @@ RUN pip install torch --extra-index-url https://download.pytorch.org/whl/cu124
28
  RUN pip install --no-cache-dir -r requirements.txt
29
 
30
  # Copy the rest of the application's code to the container
31
- COPY --chown=user src/app.py $HOME/app
32
- COPY --chown=user src/classification.py $HOME/app
33
- COPY --chown=user src/donut_inference.py $HOME/app
34
- COPY --chown=user src/non_form_llama_parse.py $HOME/app
35
- COPY --chown=user src/RAG.py $HOME/app
36
- COPY --chown=user src/.env $HOME/app
37
  COPY --chown=user images $HOME/app/images
38
  COPY --chown=user Model $HOME/app/Model
39
  COPY --chown=user best_resnet152_model.h5 $HOME/app
 
28
  RUN pip install --no-cache-dir -r requirements.txt
29
 
30
  # Copy the rest of the application's code to the container
31
+ COPY --chown=user app.py $HOME/app
32
+ COPY --chown=user classification.py $HOME/app
33
+ COPY --chown=user donut_inference.py $HOME/app
34
+ COPY --chown=user non_form_llama_parse.py $HOME/app
35
+ COPY --chown=user RAG.py $HOME/app
36
+ COPY --chown=user .env $HOME/app
37
  COPY --chown=user images $HOME/app/images
38
  COPY --chown=user Model $HOME/app/Model
39
  COPY --chown=user best_resnet152_model.h5 $HOME/app