sjbaek commited on
Commit
40a1df0
1 Parent(s): ac984b5

Docker file update

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -8
Dockerfile CHANGED
@@ -5,12 +5,9 @@ WORKDIR /
5
  COPY requirements.txt .
6
  RUN pip install -r requirements.txt
7
 
8
- COPY GemmaArte/ GemmaArte/
9
- COPY paligemma-3b-pt-224/ paligemma-3b-pt-224/
 
 
10
 
11
- #COPY pipeline.py .
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" ]