Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit dc8d769

Browse files
committedAug 13, 2018
Dockerfile: Update for coala-bears master
The Dockerfile automatically started using Python 3.7 when Alpine starting using that has its default python image. coala-bears master does not support Python 3.7 yet. Also a new bear depends on brotli. Related to coala#496 Related to coala/meta#123
1 parent c0ab787 commit dc8d769

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed
 

‎Dockerfile

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3-alpine
1+
FROM python:3.6-alpine
22

33
ENV BOT_ROOT=/opt/errbot
44

@@ -7,8 +7,11 @@ ADD requirements.txt $BOT_ROOT/requirements.txt
77
RUN apk add --no-cache libffi openssl git \
88
&& apk add --no-cache --virtual .build-deps \
99
gcc \
10+
brotli-dev@testing \
1011
libc-dev \
1112
libffi-dev \
13+
libxml2-dev \
14+
libxslt-dev \
1215
openssl-dev \
1316
&& pip install -r $BOT_ROOT/requirements.txt \
1417
&& pip install slackclient python-telegram-bot \

0 commit comments

Comments
 (0)
Please sign in to comment.