use tarball

This commit is contained in:
2026-01-03 11:54:14 -05:00
parent b9eedaee93
commit 92459803ff

View File

@@ -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"