Skip to content

Commit

Permalink
Add python packages
Browse files Browse the repository at this point in the history
Apprise, chardet & pynzbget packages to enable nzbnotify.
  • Loading branch information
CHBMB authored and thelamer committed Jun 13, 2019
1 parent 8d9b204 commit adce182
Show file tree
Hide file tree
Showing 5 changed files with 47 additions and 3 deletions.
16 changes: 15 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,9 @@ LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DA
LABEL maintainer="sparklyballs,thelamer"

RUN \
echo "**** install build packages ****" && \
apk add --no-cache --upgrade --virtual=build-dependencies \
py2-pip && \
echo "**** install packages ****" && \
apk add --no-cache \
curl \
Expand All @@ -70,7 +73,18 @@ RUN \
p7zip \
python2 \
unrar \
wget
wget && \
echo "**** install python packages ****" && \
pip install --no-cache-dir \
apprise \
chardet \
pynzbget &&\
echo "**** cleanup ****" && \
apk del --purge \
build-dependencies && \
rm -rf \
/root/.cache \
/tmp/*

# add local files and files from buildstage
COPY --from=buildstage /app/nzbget /app/nzbget
Expand Down
16 changes: 15 additions & 1 deletion Dockerfile.aarch64
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,9 @@ LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DA
LABEL maintainer="sparklyballs,thelamer"

RUN \
echo "**** install build packages ****" && \
apk add --no-cache --upgrade --virtual=build-dependencies \
py2-pip && \
echo "**** install packages ****" && \
apk add --no-cache \
curl \
Expand All @@ -70,7 +73,18 @@ RUN \
p7zip \
python2 \
unrar \
wget
wget && \
echo "**** install python packages ****" && \
pip install --no-cache-dir \
apprise \
chardet \
pynzbget &&\
echo "**** cleanup ****" && \
apk del --purge \
build-dependencies && \
rm -rf \
/root/.cache \
/tmp/*

# add local files and files from buildstage
COPY --from=buildstage /app/nzbget /app/nzbget
Expand Down
16 changes: 15 additions & 1 deletion Dockerfile.armhf
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,9 @@ LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DA
LABEL maintainer="sparklyballs,thelamer"

RUN \
echo "**** install build packages ****" && \
apk add --no-cache --upgrade --virtual=build-dependencies \
py2-pip && \
echo "**** install packages ****" && \
apk add --no-cache \
curl \
Expand All @@ -70,7 +73,18 @@ RUN \
p7zip \
python2 \
unrar \
wget
wget && \
echo "**** install python packages ****" && \
pip install --no-cache-dir \
apprise \
chardet \
pynzbget &&\
echo "**** cleanup ****" && \
apk del --purge \
build-dependencies && \
rm -rf \
/root/.cache \
/tmp/*

# add local files and files from buildstage
COPY --from=buildstage /app/nzbget /app/nzbget
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64

## Versions

* **13.06.19:** - Add apprise, chardet & pynzbget packages.
* **23.03.19:** - Switching to new Base images, shift to arm32v7 tag.
* **22.02.19:** - Rebasing to alpine 3.9.
* **20.01.19:** - Add pipeline logic and multi arch, build from source.
Expand Down
1 change: 1 addition & 0 deletions readme-vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ app_setup_block: |
# changelog
changelogs:
- { date: "13.06.19:", desc: "Add apprise, chardet & pynzbget packages." }
- { date: "23.03.19:", desc: "Switching to new Base images, shift to arm32v7 tag." }
- { date: "22.02.19:", desc: "Rebasing to alpine 3.9." }
- { date: "20.01.19:", desc: "Add pipeline logic and multi arch, build from source." }
Expand Down

0 comments on commit adce182

Please sign in to comment.