From 749303c3eedbc815d44d02cf871c75832c6984a9 Mon Sep 17 00:00:00 2001 From: jank Date: Sun, 1 Jun 2025 10:55:11 +0200 Subject: [PATCH 1/2] fix: Fix frontend build bc apparently they changed the node version --- frontend/.docker/Dockerfile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/frontend/.docker/Dockerfile b/frontend/.docker/Dockerfile index 494c91f..45a769c 100644 --- a/frontend/.docker/Dockerfile +++ b/frontend/.docker/Dockerfile @@ -1,7 +1,12 @@ FROM oven/bun:debian AS build WORKDIR /app -RUN apt-get update -y && apt-get install nodejs -y +RUN apt-get update -y && \ + apt-get install -y --no-install-recommends curl ca-certificates gnupg && \ + curl -fsSL https://deb.nodesource.com/setup_20.x | bash - && \ + apt-get install -y --no-install-recommends nodejs && \ + apt-get clean && \ + rm -rf /var/lib/apt/lists/* ENV NODE_ENV=production From 602166aa61c990a3072264029ecd9991774a8214 Mon Sep 17 00:00:00 2001 From: jank Date: Sun, 1 Jun 2025 10:55:11 +0200 Subject: [PATCH 2/2] fix: Remove sudo --- .gitea/workflows/claude.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/claude.yml b/.gitea/workflows/claude.yml index 72efd20..51c3018 100644 --- a/.gitea/workflows/claude.yml +++ b/.gitea/workflows/claude.yml @@ -31,7 +31,7 @@ jobs: TEA_VERSION=$(echo "${{ steps.tea_version.outputs.version }}") wget "https://gitea.com/gitea/tea/releases/download/v${TEA_VERSION}/tea-${TEA_VERSION}-linux-amd64" -O tea chmod +x tea - sudo mv tea /usr/local/bin/tea + mv tea /usr/local/bin/tea - name: Verify Tea Installation run: tea --version