Browse Source

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 3 years ago
parent
commit
8548ddf9d2
1 changed files with 1 additions and 1 deletions
  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