Skip to content

Commit b9bf1a3

Browse files
committed
Python 3.6.1
1 parent bebc814 commit b9bf1a3

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

build.sbt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,10 @@ version in Docker := "1.0"
2727
organization := "com.codacy"
2828

2929
val installAll =
30-
s"""apk --no-cache add bash wget ca-certificates git &&
31-
|apk add --update --no-cache python &&
32-
|apk add --update --no-cache python3 &&
30+
s"""echo "http://dl-cdn.alpinelinux.org/alpine/edge/main" >> /etc/apk/repositories &&
31+
|apk --no-cache add bash wget ca-certificates git &&
32+
|apk --no-cache add python &&
33+
|apk --no-cache add 'python3>3.6.1' &&
3334
|wget "https://bootstrap.pypa.io/get-pip.py" -O /dev/stdout | python &&
3435
|wget "https://bootstrap.pypa.io/get-pip.py" -O /dev/stdout | python3 &&
3536
|python -m pip install django==1.9.2 flask==0.10.1 pylint-flask==0.1 flask-wtf==0.12 --upgrade --ignore-installed --no-cache-dir &&

0 commit comments

Comments
 (0)