mirror of
https://github.com/linuxserver/docker-htpcmanager.git
synced 2026-02-19 19:13:48 +08:00
25 lines
394 B
Docker
Executable File
25 lines
394 B
Docker
Executable File
FROM lsiobase/alpine.python:3.6
|
||
MAINTAINER sparklyballs
|
||
|
||
# set version label
|
||
ARG BUILD_DATE
|
||
ARG VERSION
|
||
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
|
||
|
||
# install pip pacakges
|
||
RUN \
|
||
pip install --no-cache-dir -U \
|
||
cherrypy && \
|
||
|
||
# cleanup
|
||
rm -rf \
|
||
/root/.cache \
|
||
/tmp/*
|
||
|
||
# add local files
|
||
COPY root/ /
|
||
|
||
# ports and volumes
|
||
EXPOSE 8085
|
||
VOLUME /config
|