Files
derek 8dec8ced7d
Docker Build and Release Upload / build (push) Successful in 15m21s
Merge the 2 ai repos into 1
2025-08-20 17:12:10 -07:00

16 lines
351 B
Plaintext

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"]