remove test data and don't run uv twice

This commit is contained in:
2026-01-06 19:43:36 -05:00
parent 571e449581
commit 9e5f377768
3 changed files with 3 additions and 2 deletions

View File

@@ -36,7 +36,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
# Clone release
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
tar xfz $VERSION.tar.gz --strip-components=1 -C /app/code && rm $VERSION.tar.gz && rm -rf /app/code/backend/romm_test
# Install nvm
ENV NVM_DIR="/app/code/.nvm"