Update Dockerfile
Browse files- Dockerfile +5 -2
Dockerfile
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
-
|
2 |
#FROM mybigpai-public-registry.cn-beijing.cr.aliyuncs.com/easycv/torch_cuda:cogvideox_fun
|
3 |
-
FROM nvidia/cuda:11.8.0-devel-ubuntu22.04
|
4 |
WORKDIR /content
|
5 |
ENV PATH="/home/zebraslive/.local/bin:${PATH}"
|
6 |
|
@@ -13,6 +13,9 @@ RUN adduser --disabled-password --gecos '' zebraslive && \
|
|
13 |
chmod -R 777 /home && \
|
14 |
apt update -y && add-apt-repository -y ppa:git-core/ppa && apt update -y && apt install -y aria2 git git-lfs unzip ffmpeg
|
15 |
|
|
|
|
|
|
|
16 |
USER zebraslive
|
17 |
|
18 |
RUN pip install -q torch==2.4.0+cu121 torchvision==0.19.0+cu121 torchaudio==2.4.0+cu121 torchtext==0.18.0 torchdata==0.8.0 --extra-index-url https://download.pytorch.org/whl/cu121 \
|
|
|
1 |
+
FROM runpod/pytorch:2.2.1-py3.10-cuda12.1.1-devel-ubuntu22.04
|
2 |
#FROM mybigpai-public-registry.cn-beijing.cr.aliyuncs.com/easycv/torch_cuda:cogvideox_fun
|
3 |
+
#FROM nvidia/cuda:11.8.0-devel-ubuntu22.04
|
4 |
WORKDIR /content
|
5 |
ENV PATH="/home/zebraslive/.local/bin:${PATH}"
|
6 |
|
|
|
13 |
chmod -R 777 /home && \
|
14 |
apt update -y && add-apt-repository -y ppa:git-core/ppa && apt update -y && apt install -y aria2 git git-lfs unzip ffmpeg
|
15 |
|
16 |
+
RUN apt-get install -y nginx
|
17 |
+
EXPOSE 80
|
18 |
+
|
19 |
USER zebraslive
|
20 |
|
21 |
RUN pip install -q torch==2.4.0+cu121 torchvision==0.19.0+cu121 torchaudio==2.4.0+cu121 torchtext==0.18.0 torchdata==0.8.0 --extra-index-url https://download.pytorch.org/whl/cu121 \
|