vidhanm commited on
Commit
de8d25e
·
1 Parent(s): cb08759

trying to stop docker from caching

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -7,7 +7,8 @@ RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
7
  COPY requirements.txt requirements.txt
8
  RUN pip install --no-cache-dir -r requirements.txt
9
 
10
- RUN rm -rf /app/nanoVLM && git clone https://github.com/huggingface/nanoVLM.git /app/nanoVLM
 
11
 
12
  ENV PYTHONPATH="/app/nanoVLM:${PYTHONPATH}"
13
  ENV HF_HOME=/app/.cache/huggingface
 
7
  COPY requirements.txt requirements.txt
8
  RUN pip install --no-cache-dir -r requirements.txt
9
 
10
+ RUN echo "Forcing re-clone: v1" && rm -rf /app/nanoVLM && git clone https://github.com/huggingface/nanoVLM.git /app/nanoVLM
11
+
12
 
13
  ENV PYTHONPATH="/app/nanoVLM:${PYTHONPATH}"
14
  ENV HF_HOME=/app/.cache/huggingface