This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
FROM python:3.11-slim
|
||||
|
||||
WORKDIR /code
|
||||
|
||||
RUN apt-get update && apt-get install git -y && apt-get install curl -y
|
||||
|
||||
RUN git clone https://github.com/mythrantic/ollama-docker.git
|
||||
|
||||
WORKDIR /code/ollama-docker
|
||||
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
|
||||
EXPOSE 8000
|
||||
|
||||
CMD ["uvicorn", "src.main:app", "--host", "0.0.0.0", "--port", "8000", "--reload"]
|
||||
Reference in New Issue
Block a user