Merge the 2 ai repos into 1
Docker Build and Release Upload / build (push) Successful in 15m21s

This commit is contained in:
2025-08-20 17:12:10 -07:00
parent c7c8602e3a
commit 8dec8ced7d
5 changed files with 114 additions and 6 deletions
+15
View File
@@ -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"]