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