We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 118cd1b commit 79a1aacCopy full SHA for 79a1aac
Dockerfile
@@ -9,7 +9,7 @@ RUN wget https://storage.googleapis.com/golang/go1.5.linux-amd64.tar.gz
9
RUN tar -C /usr/local -xzf go1.5.linux-amd64.tar.gz
10
ENV PATH /usr/local/go/bin:$PATH
11
ENV GOPATH /go
12
-ENV PATH $GOROOT/bin:$PATH
+ENV PATH $GOPATH/bin:$PATH
13
RUN mkdir -p "$GOPATH/src" "$GOPATH/bin" && chmod -R 777 "$GOPATH"
14
15
# install gophernotes
@@ -19,4 +19,4 @@ RUN mkdir -p ~/.ipython/kernels/gophernotes
19
RUN cp -r $GOPATH/src/github.com/gophergala2016/gophernotes/kernel/* ~/.ipython/kernels/gophernotes
20
21
EXPOSE 8888
22
-CMD ["jupyter", "notebook"]
+CMD ["jupyter", "notebook"]
0 commit comments