Skip to content

Commit

Permalink
Dockerfile: Update for coala-bears master
Browse files Browse the repository at this point in the history
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
  • Loading branch information
jayvdb committed Aug 13, 2018
1 parent c0ab787 commit dfd99ec
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3-alpine
FROM python:3.6-alpine

ENV BOT_ROOT=/opt/errbot

Expand All @@ -7,8 +7,11 @@ ADD requirements.txt $BOT_ROOT/requirements.txt
RUN apk add --no-cache libffi openssl git \
&& apk add --no-cache --virtual .build-deps \
gcc \
brotli-dev \
libc-dev \
libffi-dev \
libxml2-dev \
libxslt-dev \
openssl-dev \
&& pip install -r $BOT_ROOT/requirements.txt \
&& pip install slackclient python-telegram-bot \
Expand Down

0 comments on commit dfd99ec

Please sign in to comment.