Skip to content

Commit 361c991

Browse files
author
christopherbrookes
committed
feat(docker): increase node version in docker to 10
1 parent 7686c70 commit 361c991

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
- 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)
88

99
## Improvements
10+
- Docker image use now node 10 version [#1788](https://github.com/parse-community/parse-dashboard/pull/1788)
1011
- CI now pushes docker images to Docker Hub (Corey Baker) [#1781](https://github.com/parse-community/parse-dashboard/pull/1781)
1112
- Add CI check to add changelog entry (Manuel Trezza) [#1764](https://github.com/parse-community/parse-dashboard/pull/1764)
1213
- Refactor: uniform issue templates across repos (Manuel Trezza) [#1767](https://github.com/parse-community/parse-dashboard/pull/1767)

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#
22
# --- Base Node Image ---
3-
FROM node:8-alpine AS base
3+
FROM node:10-alpine AS base
44

55
RUN apk update; \
66
apk add git;
@@ -23,7 +23,7 @@ RUN npm run prepare && npm run build
2323

2424
#
2525
# --- Production Image ---
26-
FROM node:8-alpine AS release
26+
FROM node:10-alpine AS release
2727
WORKDIR /src
2828

2929
# Copy production node_modules

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@
128128
"parse-dashboard": "./bin/parse-dashboard"
129129
},
130130
"engines": {
131-
"node": ">=8.9"
131+
"node": ">=10"
132132
},
133133
"main": "Parse-Dashboard/app.js",
134134
"jest": {

0 commit comments

Comments
 (0)