Docker file update
Browse files- Dockerfile +5 -8
Dockerfile
CHANGED
@@ -5,12 +5,9 @@ WORKDIR /
|
|
5 |
COPY requirements.txt .
|
6 |
RUN pip install -r requirements.txt
|
7 |
|
8 |
-
COPY
|
9 |
-
COPY paligemma-3b-pt-224/ paligemma-3b-pt-224
|
|
|
|
|
10 |
|
11 |
-
|
12 |
-
#COPY rp_handler.py .
|
13 |
-
COPY test_run.py .
|
14 |
-
|
15 |
-
#CMD [ "python", "-u" ,"./rp_handler.py" ]
|
16 |
-
CMD [ "python", "-u" ,"./test_run.py" ]
|
|
|
5 |
COPY requirements.txt .
|
6 |
RUN pip install -r requirements.txt
|
7 |
|
8 |
+
COPY GemmArte/ GemmArte
|
9 |
+
COPY paligemma-3b-pt-224/ paligemma-3b-pt-224
|
10 |
+
COPY pipeline.py .
|
11 |
+
COPY rp_handler.py .
|
12 |
|
13 |
+
CMD [ "python", "-u" ,"./rp_handler.py" ]
|
|
|
|
|
|
|
|
|
|