| 123456789101112131415161718192021 | # Select Base Image FROM rapidsai/rapidsai-nightly:cuda10.2-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
 |