Explorar o código

Update ui dockerfile's base image not to use alpine. Reason being that building node-gyp bindings for ARM architectures requires Python, which the alpine box does not have

Signed-off-by: Neal Ormsbee <neal.ormsbee@gmail.com>
Neal Ormsbee %!s(int64=3) %!d(string=hai) anos
pai
achega
8548ddf9d2
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      ui/Dockerfile

+ 1 - 1
ui/Dockerfile

@@ -1,4 +1,4 @@
-FROM node:16-alpine as builder
+FROM node:18.3.0 as builder
 ADD package*.json /opt/ui/
 WORKDIR /opt/ui
 RUN npm install