mirror of
https://github.com/mudler/LocalAI.git
synced 2024-06-07 19:40:48 +00:00
5 lines
151 B
Docker
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" ];
|