update dockerfiles, clean up

This commit is contained in:
Wonderfall
2017-01-16 22:13:29 +01:00
parent b444049489
commit 77fee1694f
52 changed files with 1458 additions and 32 deletions

View File

@ -1,4 +1,4 @@
FROM alpine:3.4
FROM alpine:3.5
MAINTAINER Wonderfall <wonderfall@schrodinger.io>
ARG ISSO_VER=0.10.5
@ -9,20 +9,20 @@ RUN echo "@community https://nl.alpinelinux.org/alpine/v3.4/community" >> /etc/a
&& BUILD_DEPS=" \
python-dev \
libffi-dev \
py-pip \
py2-pip \
build-base" \
&& apk -U add \
${BUILD_DEPS} \
python \
py-setuptools \
sqlite \
openssl \
libressl \
ca-certificates \
su-exec \
tini@community \
&& pip install --no-cache cffi \
&& pip install --no-cache misaka==1.0.2 \
&& wget https://github.com/posativ/isso/releases/download/$ISSO_VER/isso-$ISSO_VER.tar.gz -P /tmp \
&& wget -q https://github.com/posativ/isso/releases/download/$ISSO_VER/isso-$ISSO_VER.tar.gz -P /tmp \
&& pip install /tmp/isso-$ISSO_VER.tar.gz \
&& apk del ${BUILD_DEPS} \
&& rm -rf /var/cache/apk/* /tmp/*