Skip to content

Commit 792004e

Browse files
authored
Merge pull request #1114 from linuxserver/transmission-floodui-alpine
transmission-floodui: update alpine, fix casing
2 parents 1aa19f4 + 2c0f227 commit 792004e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
# syntax=docker/dockerfile:1
22

3-
FROM ghcr.io/linuxserver/baseimage-alpine:3.19 as buildstage
3+
FROM ghcr.io/linuxserver/baseimage-alpine:3.23 AS buildstage
44

55
ARG MOD_VERSION
66

77
RUN \
88
echo "**** grab flood-for-transmission ****" && \
9-
if [ -z ${MOD_VERSION+x} ]; then \
9+
if [ -z "${MOD_VERSION}" ]; then \
1010
MOD_VERSION=$(curl -s "https://api.github.com/repos/johman10/flood-for-transmission/releases/latest" \
1111
| jq -rc ".tag_name"); \
1212
fi && \
13-
curl -o \
13+
curl -fo \
1414
/tmp/flood.tar.gz -L \
1515
"https://github.com/johman10/flood-for-transmission/releases/download/${MOD_VERSION}/flood-for-transmission.tar.gz" && \
1616
mkdir -p /root-layer/themes/flood-for-transmission && \

0 commit comments

Comments
 (0)