localAi / examples /langchain /PY.Dockerfile
eder0782's picture
inicio
7def60a
raw
history blame
172 Bytes
FROM python:3.12-bullseye
COPY ./langchainpy-localai-example /app
WORKDIR /app
RUN pip install --no-cache-dir -r requirements.txt
ENTRYPOINT [ "python", "./full_demo.py" ]