mirror of
https://github.com/linuxserver/docker-nzbget.git
synced 2026-02-20 06:59:36 +08:00
18 lines
388 B
Docker
18 lines
388 B
Docker
FROM linuxserver/baseimage
|
|
MAINTAINER Stian Larsen <lonixx@gmail.com>
|
|
|
|
ENV APTLIST="python"
|
|
|
|
RUN apt-get update && \
|
|
apt-get install $APTLIST -qy && \
|
|
apt-get clean && rm -rf /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 /etc/my_init.d/*.sh
|
|
|
|
#Mappings
|
|
VOLUME /config /downloads
|
|
EXPOSE 6789
|