mirror of
https://github.com/mudler/LocalAI
synced 2026-05-05 14:28:45 +00:00
5 lines
151 B
Text
5 lines
151 B
Text
|
|
FROM python:3.10-bullseye
|
||
|
|
COPY . /app
|
||
|
|
WORKDIR /app
|
||
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
||
|
|
ENTRYPOINT [ "python", "./functions-openai.py" ];
|