TrueChartsClone/.containers/apps/nzbget/Dockerfile

59 lines
1.5 KiB
Docker

# hadolint ignore=DL3007
FROM ghcr.io/truecharts/ubuntu:latest
ARG VERSION
USER root
# hadolint ignore=DL3008,DL3013,DL3015,SC2086
RUN \
export EXTRA_INSTALL_ARG="build-essential libxml2-dev libxslt1-dev python3-dev python3-pip"; \
apt-get -qq update \
&& \
apt-get -qq install -y \
p7zip-full \
python3 \
unrar \
unzip \
wget \
${EXTRA_INSTALL_ARG} \
&& \
pip3 install --no-cache-dir -U \
apprise \
chardet \
pynzbget \
rarfile \
&& \
ln -s /usr/bin/python3 /usr/bin/python \
&& \
curl -fsSL -o /tmp/nzbget.run \
"https://github.com/nzbget/nzbget/releases/download/v${VERSION}/nzbget-${VERSION}-bin-linux.run" \
&& sh /tmp/nzbget.run --destdir /app \
&& \
sh /tmp/nzbget.run --destdir /app \
&& \
printf "UpdateMethod=docker\nPackageVersion=%s\nPackageAuthor=[TrueCharts Project](https://truecharts.org)" "${VERSION}" > /app/package_info \
&& \
apt-get remove -y ${EXTRA_INSTALL_ARG} \
&& apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false \
&& apt-get autoremove -y \
&& apt-get clean \
&& \
rm -rf \
/tmp/* \
/var/lib/apt/lists/* \
/var/tmp/ \
&& chmod -R u=rwX,go=rX /app \
&& printf "umask %d" "${UMASK}" >> /etc/bash.bashrc \
&& update-ca-certificates
USER apps
EXPOSE 6789
COPY ./.containers/apps/nzbget/entrypoint.sh /entrypoint.sh
CMD ["/entrypoint.sh"]
LABEL "maintainer"="TrueCharts <info@truecharts.org>"
LABEL "org.opencontainers.image.source"="https://github.com/truecharts/apps"