x86_64-alpine-tautulli/Dockerfile
Jonny Ervine 9d094563ab modified: Dockerfile
Bumped to version 2.2.0
2020-03-13 13:04:54 +00:00

38 lines
1.0 KiB
Docker

# Base on latest (edge) alpine image
FROM harbor.ervine.dev/library/x86_64/alpine/alpine-3.11
MAINTAINER “Jonathan Ervine” <docker@ervine.org>
# Install updates
ENV LANG='en_US.UTF-8' \
LANGUAGE='en_US.UTF-8' \
TERM='xterm' \
VERSION='2.2.0' \
HTPC_USER='mediaservice' \
HTPC_GROUP='mediaservice' \
HTPC_UID='1003' \
HTPC_GID='1003'
RUN echo http://dl-4.alpinelinux.org/alpine/edge/testing >> /etc/apk/repositories && \
apk update && \
apk -U upgrade && \
apk -U add \
python git py-setuptools
ADD UTC /etc/localtime
#RUN git clone https://github.com/Tautulli/Tautulli && \
RUN wget https://github.com/Tautulli/Tautulli/archive/v$VERSION.tar.gz && \
tar zxvf v$VERSION.tar.gz -C / && \
mv /Tautulli-$VERSION /Tautulli && \
rm *.tar.gz && \
rm -rf /var/cache/apk/* && \
addgroup -g $HTPC_GID $HTPC_GROUP && \
adduser -D -u $HTPC_UID -G $HTPC_GROUP -H $HTPC_USER
EXPOSE 8181
USER $HTPC_USER
CMD [ "/usr/bin/python", "/Tautulli/Tautulli.py", "--datadir", "/config", "--nofork", "--nolaunch" ]