docker-mautrix-telegram/Dockerfile
Jan Christian Gruenhage 79a2c58b9f
All checks were successful
the build was successful
chore: move back to upstream
2018-04-17 17:34:22 +01:00

25 lines
496 B
Docker

FROM docker.jcg.re/base-alpine
RUN apk add --no-cache \
python3-dev \
py3-virtualenv \
build-base \
zlib-dev \
jpeg-dev \
libxslt-dev \
libxml2-dev \
libmagic \
ffmpeg \
bash \
&& mkdir /mautrixtelegram
WORKDIR /mautrixtelegram
RUN virtualenv -p /usr/bin/python3 . \
&& source ./bin/activate \
&& pip install --upgrade https://github.com/tulir/mautrix-telegram/tarball/master#egg=mautrix_telegram[all]
COPY root /
VOLUME /data