updated dockerfile
Browse files- 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
|
32 |
-
COPY --chown=user
|
33 |
-
COPY --chown=user
|
34 |
-
COPY --chown=user
|
35 |
-
COPY --chown=user
|
36 |
-
COPY --chown=user
|
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
|