mirror of
https://github.com/mudler/LocalAI.git
synced 2024-12-18 20:27:57 +00:00
803e2db30b
chore(deps): Bump python in /examples/langchain Bumps python from 3.12-bullseye to 3.13-bullseye. --- updated-dependencies: - dependency-name: python dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
6 lines
172 B
Docker
6 lines
172 B
Docker
FROM python:3.13-bullseye
|
|
COPY ./langchainpy-localai-example /app
|
|
WORKDIR /app
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
ENTRYPOINT [ "python", "./full_demo.py" ]
|