vidhanm commited on
Commit
723d625
·
1 Parent(s): b0a4224

updating dockerfile to recache repo

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -7,7 +7,7 @@ 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 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 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