update node environment to 14

This commit is contained in:
Drew Taylor
2021-07-22 10:50:09 -07:00
parent eb22be3763
commit 293e1308fd
4 changed files with 4 additions and 4 deletions

View File

@@ -9,7 +9,7 @@ jobs:
strategy: strategy:
matrix: matrix:
node-version: [12.x] node-version: [14.x]
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2

View File

@@ -1,4 +1,4 @@
FROM node:12-alpine as builder FROM node:14-alpine as builder
COPY package*.json ./ COPY package*.json ./
RUN npm install RUN npm install

View File

@@ -1,4 +1,4 @@
FROM node:12-alpine as builder FROM node:14-alpine as builder
COPY package*.json ./ COPY package*.json ./
RUN npm install RUN npm install

View File

@@ -6,7 +6,7 @@ Front-end web application for administrating services
Running locally Running locally
1. Install Node 12 1. Install Node 14
2. Run `npm install` 2. Run `npm install`
3. Copy .env.template to .env and edit the service urls for authentication and api services 3. Copy .env.template to .env and edit the service urls for authentication and api services
4. Run `./run.sh` from the terminal 4. Run `./run.sh` from the terminal