We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6750f9 commit d0a082aCopy full SHA for d0a082a
1 file changed
tests/Dockerfile
@@ -1,7 +1,12 @@
1
ARG BASE_IMAGE=webgpu-base
2
FROM ${BASE_IMAGE}
3
4
-RUN pip install --no-cache-dir --break-system-packages ngsolve ipython git+https://github.com/CERBSim/webgpu.git
+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
10
11
WORKDIR /app
12
COPY pyproject.toml .
0 commit comments