Skip to content

Commit 82426f8

Browse files
committed
Dockerfile python lib is now version 3.6 not 3.5
1 parent d7999e6 commit 82426f8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ RUN set -x \
2222
zeromq-dev \
2323
musl-dev \
2424
&& pip3 install --upgrade pip==9.0.3 \
25-
&& ln -s /usr/bin/python3.5 /usr/bin/python \
25+
&& ln -s /usr/bin/python3.6 /usr/bin/python \
2626
## install Go
2727
&& apk --update-cache --allow-untrusted \
2828
--repository http://dl-4.alpinelinux.org/alpine/edge/community \
@@ -38,7 +38,7 @@ RUN set -x \
3838
&& mkdir -p ~/.local/share/jupyter/kernels/gophernotes \
3939
&& cp -r /go/src/github.com/gopherdata/gophernotes/kernel/* ~/.local/share/jupyter/kernels/gophernotes \
4040
## clean
41-
&& find /usr/lib/python3.5 -name __pycache__ | xargs rm -r \
41+
&& find /usr/lib/python3.6 -name __pycache__ | xargs rm -r \
4242
&& rm -rf \
4343
/root/.[acpw]* \
4444
ipaexg00301* \

Dockerfile.DS

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ RUN set -x \
2323
musl-dev \
2424
mercurial \
2525
&& pip3 install --upgrade pip==9.0.3 \
26-
&& cp /usr/bin/python3.5 /usr/bin/python \
26+
&& cp /usr/bin/python3.6 /usr/bin/python \
2727
## install Go
2828
&& apk --update-cache --allow-untrusted \
2929
--repository http://dl-4.alpinelinux.org/alpine/edge/community \
@@ -60,7 +60,7 @@ RUN set -x \
6060
&& go get github.com/pkg/errors \
6161
&& go get github.com/stretchr/testify/assert \
6262
## clean
63-
&& find /usr/lib/python3.5 -name __pycache__ | xargs rm -r \
63+
&& find /usr/lib/python3.6 -name __pycache__ | xargs rm -r \
6464
&& rm -rf \
6565
/root/.[acpw]* \
6666
ipaexg00301* \

0 commit comments

Comments
 (0)