Skip to content
Snippets Groups Projects
Commit 02599604 authored by Byungheong Jeong's avatar Byungheong Jeong
Browse files

Update Dockerfile

parent f6928be3
No related branches found
No related tags found
No related merge requests found
Pipeline #10682 failed
...@@ -2,11 +2,11 @@ ARG cuda_version=10.0 ...@@ -2,11 +2,11 @@ ARG cuda_version=10.0
ARG cudnn_version=7 ARG cudnn_version=7
FROM nvidia/cuda:${cuda_version}-cudnn${cudnn_version}-devel FROM nvidia/cuda:${cuda_version}-cudnn${cudnn_version}-devel
RUN sudo apt install apt-transport-https ca-certificates curl software-properties-common RUN apt install apt-transport-https ca-certificates curl software-properties-common
RUN curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - RUN curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
RUN sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic test" RUN add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic test"
RUN sudo apt update RUN apt update
RUN sudo apt install docker-ce RUN apt install docker-ce
# Install system packages # Install system packages
RUN apt-get update && apt-get install -y --no-install-recommends \ RUN apt-get update && apt-get install -y --no-install-recommends \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment