volcano.sh/volcano@v1.9.0/example/integrations/mxnet/train/Dockerfile (about)

     1  FROM mxnet/python:1.4.0_cpu_mkl_py3
     2  
     3  RUN apt-get update \
     4      && apt-get install -y git
     5  
     6  RUN git clone --recursive https://github.com/apache/incubator-mxnet
     7  
     8  ENTRYPOINT ["python3", "/mxnet/incubator-mxnet/example/image-classification/train_mnist.py"]