Skip to content

Commit 798c00d

Browse files
committed
fix: add no cache for dockerfile
1 parent 67a39e9 commit 798c00d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Docker/Evaluate.Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,11 @@ RUN pip install --upgrade pip
1111
RUN adduser --disabled-password --gecos "" bigcodebenchuser
1212

1313
# Acquire benchmark code to local
14-
RUN git clone https://github.com/bigcode-project/code-eval.git /bigcodebench
14+
RUN git clone https://github.com/bigcode-project/bigcodebench.git /bigcodebench
1515

16-
RUN cd /bigcodebench && pip install . && pip install -I -r https://raw.githubusercontent.com/bigcode-project/bigcodebench-annotation/main/requirements.txt
16+
RUN cd /bigcodebench && pip install --no-cache-dir .
17+
18+
RUN pip install --no-cache-dir -I -r https://raw.githubusercontent.com/bigcode-project/bigcodebench-annotation/main/requirements.txt
1719

1820
# Pre-install the dataset
1921
RUN python3 -c "from bigcodebench.data import get_bigcodebench; get_bigcodebench()"

0 commit comments

Comments
 (0)