LocalAI/examples/functions/Dockerfile

6 lines
156 B
Docker
Raw Normal View History

FROM python:3.12-slim-bullseye
COPY . /app
WORKDIR /app
RUN pip install --no-cache-dir -r requirements.txt
ENTRYPOINT [ "python", "./functions-openai.py" ]