From f48c80b70f8ab122337b4cbedfa933165305ebb9 Mon Sep 17 00:00:00 2001 From: Knut Ahlers Date: Fri, 16 Jul 2021 22:54:58 +0200 Subject: [PATCH] Terraria 1.4.2.3 Signed-off-by: Knut Ahlers --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1f1c8e9..6bd1fe4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM debian:stretch -ENV TERRARIA_VERISON=1353 \ +ENV TERRARIA_VERSION=1423 \ DUMB_INIT_VERSION=1.2.1 \ GOSU_VERSION=1.10 \ TERRARIA_DOCKER_VERSION=v0.3.0 \ @@ -23,7 +23,7 @@ RUN set -ex \ /usr/local/bin/dumb-init \ /usr/local/bin/gosu \ && mkdir -p ${SERVER} \ - && curl -sSfLo /tmp/terraria.zip "http://terraria.org/server/terraria-server-${TERRARIA_VERISON}.zip" \ + && curl -sSfLo /tmp/terraria.zip "https://terraria.org/api/download/pc-dedicated-server/terraria-server-${TERRARIA_VERSION}.zip" \ && unzip -d ${SERVER} /tmp/terraria.zip \ && chown -R gameserver:gameserver ${SERVER} \ && rm /tmp/terraria.zip \