mirror of
https://github.com/LukeHagar/LocalAI.git
synced 2025-12-09 12:37:50 +00:00
5 lines
174 B
Docker
5 lines
174 B
Docker
FROM python:3.10-bullseye
|
|
COPY ./langchainpy-localai-example /app
|
|
WORKDIR /app
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
ENTRYPOINT [ "python", "./simple_demo.py" ]; |