From 3eaf79f2a7482d5fa2e11f753dd87b64a85e746a Mon Sep 17 00:00:00 2001 From: LordMathis Date: Sun, 25 May 2025 16:25:19 +0200 Subject: [PATCH 1/2] Add TypeScript check badge to README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4d8e87b..056a7b1 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Lemma -![Build](https://github.com/LordMathis/Lemma/actions/workflows/build-and-release.yml/badge.svg) ![Go Tests](https://github.com/LordMathis/Lemma/actions/workflows/go-test.yml/badge.svg) +![Build](https://github.com/lordmathis/lemma/actions/workflows/build-and-release.yml/badge.svg) ![Go Tests](https://github.com/lordmathis/lemma/actions/workflows/go-test.yml/badge.svg) ![Typescript Check](https://github.com/lordmathis/lemma/actions/workflows/typescript.yml/badge.svg) Yet another markdown editor. Work in progress From 44c3271e1d2920d99472da6bad863d8d56c17cf9 Mon Sep 17 00:00:00 2001 From: LordMathis Date: Sun, 25 May 2025 16:34:57 +0200 Subject: [PATCH 2/2] Update frontend builder to use Node.js 24-slim --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 145e38d..799b14e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Stage 1: Build the frontend -FROM node:20 AS frontend-builder +FROM node:24-slim AS frontend-builder WORKDIR /app COPY app/package*.json ./ RUN npm ci