From 693acf048de942d82b2fc42ce0e8934196b5e400 Mon Sep 17 00:00:00 2001 From: ds Date: Sun, 28 Jun 2026 19:14:14 +0000 Subject: [PATCH] =?UTF-8?q?Dockerfile=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..aff9171 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +FROM node:20-alpine AS build + +WORKDIR /app + +COPY package*.json ./ RUN npm install + +COPY . . RUN npm run build + +FROM ghcr.io/headlamp-k8s/headlamp:latest + +COPY --from=build /app/dist /headlamp/plugins \ No newline at end of file