Makefile,web: bump to node@18

Change-Id: Ib50e18ecda9520a802a5a565e4dfe034ae41e98a
This commit is contained in:
Egon Elbre 2023-07-20 16:37:47 +03:00
parent d45bc879c3
commit dc1509ee42
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@ GO_VERSION ?= 1.20.6
GOOS ?= linux
GOARCH ?= amd64
GOPATH ?= $(shell go env GOPATH)
NODE_VERSION ?= 16.11.1
NODE_VERSION ?= 18.17.0
COMPOSE_PROJECT_NAME := ${TAG}-$(shell git rev-parse --abbrev-ref HEAD)
BRANCH_NAME ?= $(shell git rev-parse --abbrev-ref HEAD | sed "s!/!-!g")
GIT_TAG := $(shell git rev-parse --short HEAD)

View File

@ -1,6 +1,6 @@
ARG DOCKER_ARCH
# Satellite UI static asset generation
FROM node:16.11.1 as ui
FROM node:18.17.0 as ui
WORKDIR /app
COPY web/satellite/ /app
# Need to clean up (or ignore) local folders like node_modules, etc...