Skip to content

Commit 154ae84

Browse files
authored
Merge pull request #190 from JBenPiel/chore/tshock-6.1.0
Update TShock to v6.1.0 for Terraria 1.4.5.6
2 parents 203a926 + 0a0d47f commit 154ae84

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

tshock/Dockerfile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
ARG DOTNETRUNTIME_VERSION=6.0
2-
FROM alpine:3.21 AS base
1+
ARG DOTNETRUNTIME_VERSION=9.0
2+
FROM alpine:3.23 AS base
33

44
# Available environment variables:
5-
# TSHOCKVERSION="v5.2.4"
5+
# TSHOCKVERSION="v6.1.0"
66
# WORLD_FILENAME="world.wld"
77
# CONFIGPATH="/tshock/config"
88
# LOGPATH="/tshock/logs"
@@ -13,15 +13,15 @@ RUN apk add --no-cache \
1313
# add the bootstrap file
1414
COPY bootstrap.sh /tshock/bootstrap.sh
1515

16-
ENV TSHOCKVERSION=v5.2.4
16+
ENV TSHOCKVERSION=v6.1.0
1717

1818
# Download and unpack TShock
19-
# x86_64: https://github.com/Pryaxis/TShock/releases/download/v5.2.4/TShock-5.2.4-for-Terraria-1.4.4.9-linux-amd64-Release.zip
20-
# aarch64: https://github.com/Pryaxis/TShock/releases/download/v5.2.4/TShock-5.2.4-for-Terraria-1.4.4.9-linux-arm64-Release.zip
19+
# x86_64: https://github.com/Pryaxis/TShock/releases/download/v6.1.0/TShock-6.1.0-for-Terraria-1.4.5.6-linux-x64-Release.zip
20+
# aarch64: https://github.com/Pryaxis/TShock/releases/download/v6.1.0/TShock-6.1.0-for-Terraria-1.4.5.6-linux-arm64-Release.zip
2121
RUN set -eux; \
2222
arch="$(apk --print-arch)"; \
2323
case "$arch" in \
24-
'x86_64') arch_suffix="amd64" ;; \
24+
'x86_64') arch_suffix="x64" ;; \
2525
'aarch64') arch_suffix="arm64" ;; \
2626
*) \
2727
echo >&2 "error: unsupported architecture '$arch'."; \

0 commit comments

Comments
 (0)