From 92459803ffcfd80e76f654449ddc8305535a22d2 Mon Sep 17 00:00:00 2001 From: Kevin Whitaker Date: Sat, 3 Jan 2026 11:54:14 -0500 Subject: [PATCH] use tarball --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 69f1e7e..b619313 100644 --- a/Dockerfile +++ b/Dockerfile @@ -35,8 +35,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ && rm -rf /var/lib/apt/lists/* # Clone release -RUN wget https://github.com/rommapp/romm/archive/refs/tags/$VERSION.zip && \ -tar xfz $VERSION.zip --strip-components=1 -C /app/code && rm $VERSION.zip +RUN wget https://github.com/rommapp/romm/archive/refs/tags/$VERSION.tar.gz && \ +tar xfz $VERSION.tar.gz --strip-components=1 -C /app/code && rm $VERSION.tar.gz # Install nvm ENV NVM_DIR="/root/.nvm"