Dockerfile 635 B

12345678910111213141516171819202122
  1. # Select Base Image
  2. #FROM rapidsai/rapidsai:cuda10.1-runtime-ubuntu18.04-py3.7
  3. FROM rapidsai/rapidsai:cuda11.0-runtime-ubuntu18.04-py3.7
  4. # Update the repo
  5. RUN apt-get update -y
  6. # Install required dependencies
  7. RUN apt-get install -y libsm6 libxext6 libxrender-dev git
  8. # Install required python packages
  9. RUN pip install gdown
  10. # TO COPY the data
  11. COPY English/Python /workspace
  12. # Copy the Python file for downloading dataset
  13. WORKDIR /workspace/data
  14. RUN python3 /workspace/source_code/dataset.py
  15. WORKDIR /workspace
  16. CMD jupyter lab --no-browser --allow-root --ip=0.0.0.0 --port=8888 --NotebookApp.token="" --notebook-dir=/workspace