File size: 326 Bytes
c0922b2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
FROM python:3.8-slim-buster as langchain-serve-img
RUN pip3 install langchain-serve
RUN pip3 install api
CMD [ "lc-serve", "deploy", "local", "api" ]
FROM python:3.8-slim-buster as pdf-gpt-img
WORKDIR /app
COPY requirements.txt requirements.txt
RUN pip3 install -r requirements.txt
COPY . .
CMD [ "python3", "app.py" ]
|