Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

⬆️ Update ghcr.io/hassio-addons/base Docker tag to v17 #52

Merged
merged 3 commits into from
Dec 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
],
"versioningTemplate": "loose",
"datasourceTemplate": "repology",
"depNameTemplate": "alpine_3_20/{{package}}"
"depNameTemplate": "alpine_3_21/{{package}}"
},
{
"customType": "regex",
Expand Down
20 changes: 10 additions & 10 deletions sabnzbd/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG BUILD_FROM=ghcr.io/hassio-addons/base:16.3.6
ARG BUILD_FROM=ghcr.io/hassio-addons/base:17.0.0
# hadolint ignore=DL3006
FROM ${BUILD_FROM}

Expand All @@ -8,24 +8,24 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"]
# Setup base
ARG SABNZBD_VERSION=4.3.3
ARG UNRAR_VERSION=6.2.12
ARG PAR2CMDLINE_TURBO_VERSION=1.1.1
ARG PAR2CMDLINE_TURBO_VERSION=f94ea31ecce17d19f6931a58c1719a25758ae3a0
# hadolint ignore=DL3003,DL3042
RUN \
apk add --no-cache --virtual .build-dependencies \
autoconf=2.72-r0 \
automake=1.16.5-r2 \
automake=1.17-r0 \
build-base=0.5-r3 \
linux-headers=6.6-r0 \
musl-dev=1.2.5-r0 \
py3-pip=24.0-r2 \
linux-headers=6.6-r1 \
musl-dev=1.2.5-r8 \
py3-pip=24.3.1-r0 \
python3-dev=3.12.8-r1 \
\
&& apk add --no-cache \
7zip=23.01-r0 \
nginx=1.26.2-r0 \
7zip=24.08-r0 \
nginx=1.26.2-r3 \
py3-setuptools=70.3.0-r0 \
python3=3.12.8-r1 \
unzip=6.0-r14 \
unzip=6.0-r15 \
\
&& curl -J -L -o /tmp/unrar.tar.gz \
"https://www.rarlab.com/rar/unrarsrc-${UNRAR_VERSION}.tar.gz" \
Expand All @@ -39,7 +39,7 @@ RUN \
&& cd - \
\
&& curl -J -L -o /tmp/par2cmdline-turbo.tar.gz \
"https://github.com/animetosho/par2cmdline-turbo/archive/v${PAR2CMDLINE_TURBO_VERSION}.tar.gz" \
"https://github.com/animetosho/par2cmdline-turbo/archive/${PAR2CMDLINE_TURBO_VERSION}.tar.gz" \
&& mkdir -p /tmp/par2cmdline-turbo \
&& tar zxvf \
/tmp/par2cmdline-turbo.tar.gz \
Expand Down
6 changes: 3 additions & 3 deletions sabnzbd/build.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
build_from:
aarch64: ghcr.io/hassio-addons/base:16.3.6
amd64: ghcr.io/hassio-addons/base:16.3.6
armv7: ghcr.io/hassio-addons/base:16.3.6
aarch64: ghcr.io/hassio-addons/base:17.0.0
amd64: ghcr.io/hassio-addons/base:17.0.0
armv7: ghcr.io/hassio-addons/base:17.0.0
codenotary:
base_image: codenotary@frenck.dev
signer: codenotary@frenck.dev
Loading