Update Dockerfile
Browse files- Dockerfile +2 -4
Dockerfile
CHANGED
@@ -1,5 +1,5 @@
|
|
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}"
|
@@ -46,8 +46,6 @@ COPY ./datasets /content/datasets
|
|
46 |
COPY ./reports /content/reports
|
47 |
COPY ./requirements.txt /content/requirements.txt
|
48 |
RUN pip install -r /content/requirements.txt
|
49 |
-
COPY --from=proxy nginx.conf /etc/nginx/nginx.conf
|
50 |
-
COPY --from=proxy readme.html /usr/share/nginx/html/readme.html
|
51 |
|
52 |
# Copy the README.md
|
53 |
COPY README.md /usr/share/nginx/html/README.md
|
|
|
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}"
|
|
|
46 |
COPY ./reports /content/reports
|
47 |
COPY ./requirements.txt /content/requirements.txt
|
48 |
RUN pip install -r /content/requirements.txt
|
|
|
|
|
49 |
|
50 |
# Copy the README.md
|
51 |
COPY README.md /usr/share/nginx/html/README.md
|