mirror of
https://github.com/linuxserver/docker-tautulli.git
synced 2026-02-20 01:07:48 +08:00
28 lines
417 B
Docker
28 lines
417 B
Docker
FROM lsiobase/alpine.python:3.5
|
||
MAINTAINER sparklyballs
|
||
|
||
# install packages
|
||
RUN \
|
||
apk add --no-cache --virtual=build-dependencies \
|
||
g++ \
|
||
gcc \
|
||
make \
|
||
python-dev && \
|
||
|
||
# install pycryptodomex
|
||
pip install --no-cache-dir -U \
|
||
pycryptodomex && \
|
||
|
||
# cleanup
|
||
apk del --purge \
|
||
build-dependencies && \
|
||
rm -rf \
|
||
/root/.cache
|
||
|
||
# add local files
|
||
COPY root/ /
|
||
|
||
# ports and volumes
|
||
VOLUME /config /logs
|
||
EXPOSE 8181
|