From 10ca07f0c15fcf9b8b9cd57b33d936a4fc3fed20 Mon Sep 17 00:00:00 2001 From: Rafael Date: Thu, 5 Dec 2024 11:07:17 +0000 Subject: [PATCH] build: node22 for ui building --- build/server.Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/server.Dockerfile b/build/server.Dockerfile index 05bbdf87..ec436e90 100644 --- a/build/server.Dockerfile +++ b/build/server.Dockerfile @@ -25,8 +25,8 @@ EXPOSE 3000 ENTRYPOINT [ "/lamassu-server/bin/lamassu-server-entrypoint.sh" ] -FROM alpine:3.14 AS build-ui -RUN apk add --no-cache nodejs npm git curl build-base python3 +FROM node:22-alpine AS build-ui +RUN apk add --no-cache npm git curl build-base python3 COPY ["new-lamassu-admin/package.json", "new-lamassu-admin/package-lock.json", "./"]