From 293e1308fdf1ebf38f9e9394b93ce49f679da677 Mon Sep 17 00:00:00 2001 From: Drew Taylor Date: Thu, 22 Jul 2021 10:50:09 -0700 Subject: [PATCH] update node environment to 14 --- .github/workflows/test.workflow.yml | 2 +- Dockerfile | 2 +- Dockerfile.dev | 2 +- README.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.workflow.yml b/.github/workflows/test.workflow.yml index 420e71f..4868613 100644 --- a/.github/workflows/test.workflow.yml +++ b/.github/workflows/test.workflow.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: - node-version: [12.x] + node-version: [14.x] steps: - uses: actions/checkout@v2 diff --git a/Dockerfile b/Dockerfile index 561d10b..ba18273 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:12-alpine as builder +FROM node:14-alpine as builder COPY package*.json ./ RUN npm install diff --git a/Dockerfile.dev b/Dockerfile.dev index b08537a..cc5ee57 100644 --- a/Dockerfile.dev +++ b/Dockerfile.dev @@ -1,4 +1,4 @@ -FROM node:12-alpine as builder +FROM node:14-alpine as builder COPY package*.json ./ RUN npm install diff --git a/README.md b/README.md index 550e96e..1b79fe4 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ Front-end web application for administrating services Running locally -1. Install Node 12 +1. Install Node 14 2. Run `npm install` 3. Copy .env.template to .env and edit the service urls for authentication and api services 4. Run `./run.sh` from the terminal