Skip to content
Open
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 apps/aws-signing-helper/docker-bake.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ variable "APP" {

variable "VERSION" {
// renovate: datasource=github-releases depName=aws/rolesanywhere-credential-helper
default = "1.7.0"
default = "1.8.0"
}

variable "SOURCE" {
Expand Down
41 changes: 41 additions & 0 deletions apps/whisparr-v3/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# syntax=docker/dockerfile:1

FROM docker.io/library/alpine:3.23
ARG TARGETARCH
ARG VENDOR
ARG VERSION

ENV COMPlus_EnableDiagnostics=0

USER root
WORKDIR /app

RUN \
apk add --no-cache \
bash \
ca-certificates \
catatonit \
coreutils \
curl \
icu-libs \
jq \
libintl \
nano \
sqlite-libs \
tzdata \
&& mkdir -p /app/bin \
&& curl -fsSL "https://github.com/Whisparr/Whisparr-Eros/releases/download/v${VERSION}/Whisparr.eros.${VERSION}.linux-musl-${TARGETARCH/amd64/x64}.tar.gz" \
| tar xzf - -C /app/bin --strip-components=1 \
&& printf "UpdateMethod=docker\nPackageVersion=%s\nPackageAuthor=[%s](https://github.com/%s)\n" "${VERSION}" "${VENDOR}" "${VENDOR}" > /app/package_info \
&& chown -R root:root /app && chmod -R 755 /app \
&& rm -rf /tmp/* /app/bin/Whisparr.Update

COPY . /

USER nobody:nogroup
WORKDIR /config
VOLUME ["/config"]

ENTRYPOINT ["/usr/bin/catatonit", "--", "/entrypoint.sh"]

LABEL org.opencontainers.image.source="https://github.com/Whisparr/Whisparr-Eros"
42 changes: 42 additions & 0 deletions apps/whisparr-v3/docker-bake.hcl
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
target "docker-metadata-action" {}

variable "APP" {
default = "whisparr"
}

variable "VERSION" {
// renovate: datasource=github-releases depName=whisparr versioning=loose
default = "3.3.2-release.604"
}

variable "SOURCE" {
default = "https://github.com/Whisparr/Whisparr-Eros"
}

group "default" {
targets = ["image-local"]
}

target "image" {
inherits = ["docker-metadata-action"]
args = {
VERSION = "${VERSION}"
}
labels = {
"org.opencontainers.image.source" = "${SOURCE}"
}
}

target "image-local" {
inherits = ["image"]
output = ["type=docker"]
tags = ["${APP}:${VERSION}"]
}

target "image-all" {
inherits = ["image"]
platforms = [
"linux/amd64",
"linux/arm64"
]
}
7 changes: 7 additions & 0 deletions apps/whisparr-v3/entrypoint.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/usr/bin/env bash

exec \
/app/bin/Whisparr \
--nobrowser \
--data=/config \
"$@"
Loading