diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 4f65d7b..0000000 --- a/Dockerfile +++ /dev/null @@ -1,19 +0,0 @@ -# Select PyTorch image from nvidia -FROM nvcr.io/nvidia/pytorch:22.03-py3 - -ENV DEBIAN_FRONTEND noninteractive - -WORKDIR /app/code - -# Bootstrap pip -RUN wget https://bootstrap.pypa.io/get-pip.py && \ - python3 get-pip.py && \ - rm get-pip.py - -# PdbPP: A better debuggin experience -RUN pip install pdbpp pygments -COPY ./.pdbrc.py /.pdbrc.py - -# Install code requirements -COPY requirements.txt requirements.txt -RUN pip install -r requirements.txt \ No newline at end of file