Skip to content

Commit d0a082a

Browse files
committed
use git lfs when installing webgpu from github in tests
1 parent e6750f9 commit d0a082a

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

tests/Dockerfile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
ARG BASE_IMAGE=webgpu-base
22
FROM ${BASE_IMAGE}
33

4-
RUN pip install --no-cache-dir --break-system-packages ngsolve ipython git+https://github.com/CERBSim/webgpu.git
4+
RUN git clone https://github.com/CERBSim/webgpu.git /tmp/webgpu \
5+
&& cd /tmp/webgpu && git lfs pull \
6+
&& pip install --no-cache-dir --break-system-packages /tmp/webgpu \
7+
&& rm -rf /tmp/webgpu
8+
9+
RUN pip install --no-cache-dir --break-system-packages ngsolve ipython
510

611
WORKDIR /app
712
COPY pyproject.toml .

0 commit comments

Comments
 (0)