File size: 251 Bytes
ac984b5
 
 
 
 
 
 
40a1df0
 
 
 
ac984b5
40a1df0
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM python:3.11.1-buster

WORKDIR /

COPY requirements.txt .
RUN pip install -r requirements.txt

COPY GemmArte/ GemmArte
COPY paligemma-3b-pt-224/ paligemma-3b-pt-224
COPY pipeline.py .
COPY rp_handler.py .

CMD [ "python", "-u" ,"./rp_handler.py" ]