LocalAI/examples/functions/Dockerfile
2023-07-18 00:04:21 +02:00

5 lines
151 B
Docker

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