Skip to content

Commit eef8c2d

Browse files
committed
Use Python3, also (for some reason) include nodejs
This fixes #193
1 parent b902163 commit eef8c2d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ LABEL org.label-schema.build-date=$BUILD_DATE \
1616
org.label-schema.schema-version="1.0"
1717

1818

19-
RUN apk add --update graphviz ttf-freefont py2-pip gcc python2-dev libc-dev && rm -rf /var/cache/apk/*
19+
RUN apk add --update graphviz ttf-freefont py3-pip gcc python3-dev libc-dev nodejs && rm -rf /var/cache/apk/*
2020

2121

2222
#wheel needed by ruamel.yaml for some reason
23-
RUN pip install wheel
24-
RUN pip install cwltool html5lib ruamel.yaml==0.12.4
23+
RUN pip3 install wheel
24+
RUN pip3 install cwltool html5lib ruamel.yaml==0.12.4
2525

2626
RUN cwltool --version
2727

0 commit comments

Comments
 (0)