diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f6aea3f61..dcc78a6efb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ - Add multi-factor authentication to dashboard login. To use one-time password, run `parse-dashboard --createMFA` or `parse-dashboard --createUser`. (Daniel Blyth) [#1624](https://github.com/parse-community/parse-dashboard/pull/1624) ## Improvements +- Docker image use now node 12 version [#1788](https://github.com/parse-community/parse-dashboard/pull/1788) - CI now pushes docker images to Docker Hub (Corey Baker) [#1781](https://github.com/parse-community/parse-dashboard/pull/1781) - Add CI check to add changelog entry (Manuel Trezza) [#1764](https://github.com/parse-community/parse-dashboard/pull/1764) - Refactor: uniform issue templates across repos (Manuel Trezza) [#1767](https://github.com/parse-community/parse-dashboard/pull/1767) diff --git a/Dockerfile b/Dockerfile index 254cb3bcde..e3054cf6ee 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # # --- Base Node Image --- -FROM node:8-alpine AS base +FROM node:12-alpine AS base RUN apk update; \ apk add git; @@ -23,7 +23,7 @@ RUN npm run prepare && npm run build # # --- Production Image --- -FROM node:8-alpine AS release +FROM node:12-alpine AS release WORKDIR /src # Copy production node_modules diff --git a/package.json b/package.json index 3ec396bd82..9164c13c0c 100644 --- a/package.json +++ b/package.json @@ -128,7 +128,7 @@ "parse-dashboard": "./bin/parse-dashboard" }, "engines": { - "node": ">=8.9" + "node": ">=12.22.6" }, "main": "Parse-Dashboard/app.js", "jest": {