You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

Dockerfile 391 B

12345678910111213
  1. FROM quay.io/pypa/manylinux2014_x86_64:2021-12-30-cb9fd5b
  2. ENV UID=1024 \
  3. PATH=${PATH}:/usr/local/cuda/bin \
  4. LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/local/cuda/lib64:/usr/local/cuda/lib64/stubs:/opt/cudnn/lib64:/opt/tensorrt/lib
  5. ARG platform
  6. COPY setup_mirror.sh .
  7. RUN ./setup_mirror.sh "$platform"
  8. ADD init_image.sh /tmp
  9. RUN /tmp/init_image.sh x86_64 && rm -f /tmp/init_image.sh