meepmoo commited on
Commit
03180d9
·
verified ·
1 Parent(s): dcf5c48

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -0
Dockerfile CHANGED
@@ -3,6 +3,7 @@ FROM runpod/pytorch:2.2.1-py3.10-cuda12.1.1-devel-ubuntu22.04
3
  #FROM nvidia/cuda:11.8.0-devel-ubuntu22.04
4
  WORKDIR /content
5
  ENV PATH="/home/zebraslive/.local/bin:${PATH}"
 
6
 
7
  RUN adduser --disabled-password --gecos '' zebraslive && \
8
  adduser zebraslive sudo && \
@@ -45,4 +46,10 @@ COPY ./datasets /content/datasets
45
  COPY ./reports /content/reports
46
  COPY ./requirements.txt /content/requirements.txt
47
  RUN pip install -r /content/requirements.txt
 
 
 
 
 
48
  WORKDIR /content
 
 
3
  #FROM nvidia/cuda:11.8.0-devel-ubuntu22.04
4
  WORKDIR /content
5
  ENV PATH="/home/zebraslive/.local/bin:${PATH}"
6
+ ENV DEBIAN_FRONTEND noninteractive
7
 
8
  RUN adduser --disabled-password --gecos '' zebraslive && \
9
  adduser zebraslive sudo && \
 
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
54
  WORKDIR /content
55
+ CMD ["python3", "/content/worker_runpod.py"]