WilliamGazeley commited on
Commit
7bbdf0e
·
1 Parent(s): f52a38f

Faster image rebuild

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -2
Dockerfile CHANGED
@@ -48,10 +48,9 @@ COPY --chown=1000 ./requirements.txt /tmp/requirements.txt
48
  RUN pip install --no-cache-dir --upgrade -r /tmp/requirements.txt && \
49
  pip install flash-attn --no-build-isolation
50
 
51
- COPY --chown=1000 src ${HOME}/app
52
-
53
  COPY ollama_init.sh .
54
  RUN sh ./ollama_init.sh ${OLLAMA_MODEL}
 
55
  EXPOSE 8501
56
  CMD ollama serve & \
57
  streamlit run app.py \
 
48
  RUN pip install --no-cache-dir --upgrade -r /tmp/requirements.txt && \
49
  pip install flash-attn --no-build-isolation
50
 
 
 
51
  COPY ollama_init.sh .
52
  RUN sh ./ollama_init.sh ${OLLAMA_MODEL}
53
+ COPY --chown=1000 src ${HOME}/app
54
  EXPOSE 8501
55
  CMD ollama serve & \
56
  streamlit run app.py \