tinyllama / Dockerfile
Prajith04's picture
Update Dockerfile
a75c6b0 verified
raw
history blame contribute delete
194 Bytes
FROM python:3.9
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
RUN curl https://ollama.ai/install.sh | sh