Add an anchor for the trial end sectionnn
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -8,6 +8,8 @@ WORKDIR /app
|
|
8 |
|
9 |
COPY --chown=user ./requirements.txt requirements.txt
|
10 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
|
|
|
|
11 |
|
12 |
COPY --chown=user . /app
|
13 |
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|
|
|
8 |
|
9 |
COPY --chown=user ./requirements.txt requirements.txt
|
10 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
11 |
+
RUN docker run -d -v ollama:/root/.ollama -p 11434:11434 --name ollama ollama/ollama
|
12 |
+
|
13 |
|
14 |
COPY --chown=user . /app
|
15 |
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|