Spaces:
Running
on
L40S
Running
on
L40S
Akash Garg
commited on
Commit
·
0e09959
1
Parent(s):
ae4769d
dockerfile
Browse files- Dockerfile +35 -0
Dockerfile
ADDED
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FROM docker.io/nvidia/cuda:12.3.2-cudnn9-devel-ubuntu22.04@sha256:fb1ad20f2552f5b3aafb2c9c478ed57da95e2bb027d15218d7a55b3a0e4b4413
|
2 |
+
|
3 |
+
RUN pyenv install 3.10 && pyenv global 3.10 && pyenv rehash
|
4 |
+
|
5 |
+
RUN --mount=target=/tmp/requirements.txt,source=requirements.txt pip install --no-cache-dir -r /tmp/requirements.txt
|
6 |
+
|
7 |
+
RUN curl https://pyenv.run | bash
|
8 |
+
|
9 |
+
RUN pip freeze > /tmp/freeze.txt
|
10 |
+
|
11 |
+
RUN apt-get update && apt-get install -y curl && curl -fsSL https://deb.nodesource.com/setup_20.x | bash - && apt-get install -y nodejs && rm -rf /var/lib/apt/lists/* && apt-get clean
|
12 |
+
|
13 |
+
RUN pip install --no-cache-dir pip -U && pip install --no-cache-dir datasets "huggingface-hub>=0.19" "hf-transfer>=0.1.4" "protobuf<4" "click<8.1" "pydantic~=1.0"
|
14 |
+
|
15 |
+
RUN apt-get update && apt-get install -y git rsync make build-essential libssl-dev zlib1g-dev libbz2-dev libreadline-dev libsqlite3-dev wget curl llvm libncursesw5-dev xz-utils tk-dev libxml2-dev libxmlsec1-dev libffi-dev liblzma-dev git-lfs ffmpeg libsm6 libxext6 cmake libgl1-mesa-glx && rm -rf /var/lib/apt/lists/* && git lfs install
|
16 |
+
|
17 |
+
COPY --chown=1000:1000 --from=root / /
|
18 |
+
|
19 |
+
WORKDIR /home/user/app
|
20 |
+
|
21 |
+
RUN apt-get update && apt-get install -y fakeroot && mv /usr/bin/apt-get /usr/bin/.apt-get && echo '#!/usr/bin/env sh\nfakeroot /usr/bin/.apt-get $@' > /usr/bin/apt-get && chmod +x /usr/bin/apt-get && rm -rf /var/lib/apt/lists/* && useradd -m -u 1000 user
|
22 |
+
|
23 |
+
RUN pip install --no-cache-dir gradio[oauth]==5.22.0 "uvicorn>=0.14.0" spaces
|
24 |
+
|
25 |
+
COPY --link --chown=1000 ./ /home/user/app
|
26 |
+
|
27 |
+
COPY --from=pipfreeze --link --chown=1000 /tmp/freeze.txt /tmp/freeze.txt
|
28 |
+
|
29 |
+
RUN git clone https://github.com/Roblox/cube.git
|
30 |
+
|
31 |
+
WORKDIR /home/user/app/cube
|
32 |
+
RUN pip install .[meshlab]
|
33 |
+
RUN huggingface-cli download Roblox/cube3d-v0.1 --local-dir ./model_weights
|
34 |
+
|
35 |
+
WORKDIR /home/user/app
|