Skip to content

Commit 21eadfb

Browse files
authored
Merge pull request #2311 from AllenInstitute/bugfix/2311-nwb-read-tests-requirements-no-extra
tools/nwb-read-tests/Dockerfile: Don't install additional dependencies
2 parents c2f4182 + 10f9001 commit 21eadfb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/nwb-read-tests/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ COPY requirements.txt .
3030
# https://stackoverflow.com/a/75696359
3131
RUN python -m venv --system-site-packages /home/ci/.venv && \
3232
. /home/ci/.venv/bin/activate && \
33-
pip3 install -r requirements.txt
33+
pip3 install --no-deps -r requirements.txt
3434

3535
# https://stackoverflow.com/a/56286534
3636
ENV PATH=/home/ci/.venv/bin:${PATH}

0 commit comments

Comments
 (0)