From 2c4c26a240f4e65b2528ea3743ea5d43c3e70891 Mon Sep 17 00:00:00 2001 From: zontreck Date: Mon, 23 Dec 2024 12:33:40 -0700 Subject: [PATCH] Run wget, don't copy from local files --- LinuxGeneralCompiler/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/LinuxGeneralCompiler/Dockerfile b/LinuxGeneralCompiler/Dockerfile index 62ed44a..8ee60f9 100644 --- a/LinuxGeneralCompiler/Dockerfile +++ b/LinuxGeneralCompiler/Dockerfile @@ -1,8 +1,9 @@ FROM git.zontreck.com/ariascreations/buildenvironments:appimage AS BUILDER -COPY ./vs_server_linux-x64_1.19.8.tar.gz /vs_server.tar.gz +WORKDIR / +RUN wget https://cdn.vintagestory.at/gamefiles/stable/vs_server_linux-x64_1.19.8.tar.gz WORKDIR /vintagestory -RUN tar -xvf /vs_server.tar.gz && rm /*.tar.gz +RUN tar -xvf /vs_server_linux-x64_1.19.8.tar.gz && rm /*.tar.gz FROM git.zontreck.com/ariascreations/buildenvironments:appimage