From 1b4abd03c0bf3b9f499b579b20bf4d4b45d0dc28 Mon Sep 17 00:00:00 2001 From: filippo-ferrari Date: Fri, 6 Sep 2024 20:13:25 +0200 Subject: [PATCH] feat: changed Dockerfile --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index fea07ab..5b1cb3f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,9 @@ # Use a Maven image with OpenJDK 22 to build the JAR FROM maven:3.9.4-eclipse-temurin-21-alpine AS build +# Install Node.js (needed for Vaadin frontend tooling) +RUN apk add --no-cache nodejs npm + # Set the working directory WORKDIR /app