From 7e62b3b9aadf9021abe1f64dfa14d73ba22a2f86 Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Fri, 23 Aug 2019 18:14:51 -0700 Subject: [PATCH] chore: Upgrade Node to v12 (#1023) * chore: Upgrade Node to v12 * test: Upgrade test node image --- .circleci/config.yml | 2 +- Dockerfile | 2 +- README.md | 2 +- package.json | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 856014b4..d18513d6 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -3,7 +3,7 @@ jobs: build: working_directory: ~/outline docker: - - image: circleci/node:8.11 + - image: circleci/node:12 - image: circleci/redis:latest - image: circleci/postgres:9.6.5-alpine-ram environment: diff --git a/Dockerfile b/Dockerfile index 4ef9b2ec..5dc4ecba 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:8.11-alpine +FROM node:12-alpine ENV PATH /opt/outline/node_modules/.bin:/opt/node_modules/.bin:$PATH ENV NODE_PATH /opt/outline/node_modules:/opt/node_modules diff --git a/README.md b/README.md index b7a3dd6e..1df892b1 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ If you'd like to run your own copy of Outline or contribute to development then Outline requires the following dependencies: -- Node.js >= 8.11 +- Node.js >= 12 - Postgres >=9.5 - Redis - AWS S3 storage bucket for media and other attachments diff --git a/package.json b/package.json index cb412524..41d840a7 100644 --- a/package.json +++ b/package.json @@ -48,7 +48,7 @@ ] }, "engines": { - "node": ">= 8.11" + "node": ">= 12" }, "repository": { "type": "git",