From af434ad3a4f7df18197548575ef266d74ed81ba2 Mon Sep 17 00:00:00 2001 From: Denis Lugowski Date: Sat, 15 Nov 2025 09:26:33 +0100 Subject: [PATCH] fix(frontend): Add Java to frontend Dockerfile --- legalconsenthub/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/legalconsenthub/Dockerfile b/legalconsenthub/Dockerfile index 8c4f145..d953983 100644 --- a/legalconsenthub/Dockerfile +++ b/legalconsenthub/Dockerfile @@ -2,6 +2,8 @@ FROM node:22.16.0-alpine AS builder WORKDIR /app +RUN apk add --no-cache openjdk21-jre + RUN npm install -g pnpm@10.13.1 COPY package.json pnpm-lock.yaml ./