update alpine, fix casing, fix var check

This commit is contained in:
aptalca 2025-12-31 13:18:26 -05:00
parent fdf7f8469b
commit 7b5f2bd02a
No known key found for this signature in database
GPG Key ID: BE36CFFB9FD85548

View File

@ -1,13 +1,13 @@
# syntax=docker/dockerfile:1
FROM ghcr.io/linuxserver/baseimage-alpine:3.19 as buildstage
FROM ghcr.io/linuxserver/baseimage-alpine:3.23 AS buildstage
ARG MOD_VERSION
RUN \
echo "**** grab transmissionic ****" && \
mkdir -p /root-layer/themes && \
if [ -z ${MOD_VERSION+x} ]; then \
if [ -z "${MOD_VERSION}" ]; then \
MOD_VERSION=$(curl -s "https://api.github.com/repos/6c65726f79/Transmissionic/releases/latest" \
| jq -rc ".tag_name"); \
fi && \