From 2f298a23ae0173f3b5dcf2063236673cb0ca36cd Mon Sep 17 00:00:00 2001 From: Ryan Sheehan Date: Tue, 24 Dec 2024 00:27:57 -0600 Subject: [PATCH] fixed tshock file download names, and updated versions for GH Actions to build docker image --- tshock/Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tshock/Dockerfile b/tshock/Dockerfile index c42571c..32f19d1 100644 --- a/tshock/Dockerfile +++ b/tshock/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.17.3 AS base +FROM alpine:3.21.0 AS base RUN apk add --update-cache \ curl unzip @@ -9,11 +9,13 @@ COPY bootstrap.sh /tshock/bootstrap.sh ENV TSHOCKVERSION=v5.2.1 # Download and unpack TShock +# https://github.com/Pryaxis/TShock/releases/download/v5.2.1/TShock-5.2.1-for-Terraria-1.4.4.9-linux-amd64-Release.zip +# https://github.com/Pryaxis/TShock/releases/download/v5.2.1/TShock-5.2.1-for-Terraria-1.4.4.9-linux-arm64-Release.zip RUN set -eux; \ arch="$(apk --print-arch)"; \ case "$arch" in \ 'x86_64') \ - export TSHOCKZIP='TShock-5.2.1-for-Terraria-1.4.4.9-linux-x64-Release.zip'; \ + export TSHOCKZIP='TShock-5.2.1-for-Terraria-1.4.4.9-linux-amd64-Release.zip'; \ ;; \ 'aarch64') \ export TSHOCKZIP='TShock-5.2.1-for-Terraria-1.4.4.9-linux-arm64-Release.zip'; \