| 12345678910111213141516171819202122 | # Select Base Image #FROM rapidsai/rapidsai:cuda10.1-runtime-ubuntu18.04-py3.7FROM rapidsai/rapidsai:cuda11.0-runtime-ubuntu18.04-py3.7# Update the repoRUN apt-get update -y# Install required dependenciesRUN apt-get install -y libsm6 libxext6 libxrender-dev git # Install required python packagesRUN pip install gdown# TO COPY the data COPY English/Python /workspace# Copy the Python file for downloading dataset WORKDIR /workspace/dataRUN python3 /workspace/source_code/dataset.pyWORKDIR /workspaceCMD jupyter lab --no-browser --allow-root --ip=0.0.0.0 --port=8888 --NotebookApp.token="" --notebook-dir=/workspace
 |