Compare commits

...

2 commits

Author SHA1 Message Date
360acb2dbd fix: Remove sudo
All checks were successful
CI / Get Changed Files (pull_request) Successful in 12s
Setup Gitea Tea CLI / setup-and-login (pull_request) Successful in 1m33s
CI / oxlint (pull_request) Successful in 22s
CI / eslint (pull_request) Successful in 32s
CI / prettier (pull_request) Successful in 26s
CI / Docker frontend validation (pull_request) Successful in 17s
CI / Backend Tests (pull_request) Successful in 2m16s
CI / test-build (pull_request) Successful in 35s
CI / Docker backend validation (pull_request) Successful in 12s
CI / Checkstyle Main (pull_request) Successful in 33s
2025-06-01 11:04:45 +02:00
07f93904a6 fix: Fix frontend build bc apperantly they changed the node version 2025-06-01 11:04:43 +02:00
2 changed files with 7 additions and 2 deletions

View file

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

View file

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