docker-htpcmanager/Dockerfile
2015-10-07 12:56:04 +01:00

27 lines
640 B
Docker
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

FROM linuxserver/baseimage.python
MAINTAINER Sparklyballs <sparklyballs@linuxserver.io>
ENV APTLIST="libfreetype6-dev libjpeg8-dev libopenjpeg-dev libpng-dev libwebp-dev vnstat zlib1g-dev"
# install packages
RUN apt-get update -q && \
apt-get install \
$APTLIST -qy && \
# install pip packages
pip install -U pillow && \
pip install -U paramiko && \
pip install -U psutil && \
apt-get clean && rm -rf /tmp/* /var/lib/apt/lists/* /var/tmp/*
#Adding Custom files
ADD init/ /etc/my_init.d/
ADD services/ /etc/service/
RUN chmod -v +x /etc/service/*/run && chmod -v +x /etc/my_init.d/*.sh
# Volumes and Ports
VOLUME /config
EXPOSE 8085