switch to node version specified in .nvmrc file (#2225)

This commit is contained in:
Pedro Juarez
2022-08-05 17:54:47 -07:00
committed by GitHub
parent ddd25a20eb
commit 919232261d
8 changed files with 103 additions and 40 deletions

View File

@@ -1,4 +1,5 @@
FROM node:17 as uilayer
ARG NODE_VERSION
FROM node:$NODE_VERSION as uilayer
WORKDIR /app