Spaces:
Build error
Build error
Update Dockerfile
Browse files- Dockerfile +4 -4
Dockerfile
CHANGED
@@ -11,14 +11,14 @@ WORKDIR /app
|
|
11 |
COPY --chown=user ./requirements.txt requirements.txt
|
12 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
13 |
|
|
|
|
|
|
|
|
|
14 |
# Install specific versions of PyTorch and other dependencies
|
15 |
RUN pip install torch==2.1.0 torchvision==0.16.0 torchaudio==2.1.0 --index-url https://download.pytorch.org/whl/cu118 \
|
16 |
&& pip install -U xformers --index-url https://download.pytorch.org/whl/cu118
|
17 |
|
18 |
-
# Clone and install the modified gaussian splatting repository
|
19 |
-
#RUN git clone --recursive https://github.com/ashawkey/diff-gaussian-rasterization \
|
20 |
-
# && pip install ./diff-gaussian-rasterization
|
21 |
-
|
22 |
# Install nvdiffrast for mesh extraction
|
23 |
RUN pip install git+https://github.com/NVlabs/nvdiffrast
|
24 |
|
|
|
11 |
COPY --chown=user ./requirements.txt requirements.txt
|
12 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
13 |
|
14 |
+
# Clone and install the modified gaussian splatting repository
|
15 |
+
RUN git clone --recursive https://github.com/ashawkey/diff-gaussian-rasterization \
|
16 |
+
&& pip install ./diff-gaussian-rasterization
|
17 |
+
|
18 |
# Install specific versions of PyTorch and other dependencies
|
19 |
RUN pip install torch==2.1.0 torchvision==0.16.0 torchaudio==2.1.0 --index-url https://download.pytorch.org/whl/cu118 \
|
20 |
&& pip install -U xformers --index-url https://download.pytorch.org/whl/cu118
|
21 |
|
|
|
|
|
|
|
|
|
22 |
# Install nvdiffrast for mesh extraction
|
23 |
RUN pip install git+https://github.com/NVlabs/nvdiffrast
|
24 |
|