Skip to content

Commit

Permalink
upgrade to 0.22.554
Browse files Browse the repository at this point in the history
  • Loading branch information
SaswatPadhi committed Sep 4, 2024
1 parent a8042ce commit 290a51a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM padhihomelab/alpine-base:3.20.1_0.19.0_0.2 as base
FROM padhihomelab/alpine-base:3.20.2_0.19.0_0.2 as base

Check warning on line 1 in Dockerfile

View workflow job for this annotation

GitHub Actions / build

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 1 in Dockerfile

View workflow job for this annotation

GitHub Actions / build

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 1 in Dockerfile

View workflow job for this annotation

GitHub Actions / build

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 1 in Dockerfile

View workflow job for this annotation

GitHub Actions / build

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 1 in Dockerfile

View workflow job for this annotation

GitHub Actions / build

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 1 in Dockerfile

View workflow job for this annotation

GitHub Actions / build

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/
ARG TARGETARCH

FROM base AS base-amd64
Expand All @@ -13,7 +13,7 @@ ENV JACKETT_ARCH=ARM32
FROM base-${TARGETARCH}${TARGETVARIANT}


ARG JACKETT_VERSION=0.22.277
ARG JACKETT_VERSION=0.22.554


ADD "https://github.com/Jackett/Jackett/releases/download/v${JACKETT_VERSION}/Jackett.Binaries.LinuxMusl${JACKETT_ARCH}.tar.gz" \
Expand All @@ -31,6 +31,7 @@ RUN chmod +x /etc/docker-entrypoint.d/99-extra-scripts/*.sh \
&& apk add --no-cache --update \
icu-libs \
tzdata \
wget \
&& cd /tmp \
&& tar -xvzf jackett.tar.gz \
&& rm -rf Jackett/JackettUpdater* \
Expand All @@ -48,4 +49,3 @@ CMD [ "jackett" ]
HEALTHCHECK --start-period=10s --interval=30s --timeout=5s \
CMD [ "wget", "--tries", "5", "-qSO", "/dev/null", \
"http://127.0.0.1:9117/UI/Login?cookiesChecked=1" ]

0 comments on commit 290a51a

Please sign in to comment.