Skip to content

Commit 0ce85b1

Browse files
authored
Update sass and docker (#1792)
* Update sass and docker * update lock file * Add change log * bump minimum node * revert node
1 parent 15bd67e commit 0ce85b1

File tree

4 files changed

+143
-378
lines changed

4 files changed

+143
-378
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+
- Update sass to 5.0.0 and make docker image use node:lts-alpine (Corey Baker) [#1792](https://github.com/parse-community/parse-dashboard/pull/1792)
1011
- Docker image use now node 12 version [#1788](https://github.com/parse-community/parse-dashboard/pull/1788)
1112
- CI now pushes docker images to Docker Hub (Corey Baker) [#1781](https://github.com/parse-community/parse-dashboard/pull/1781)
1213
- Add CI check to add changelog entry (Manuel Trezza) [#1764](https://github.com/parse-community/parse-dashboard/pull/1764)

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#
22
# --- Base Node Image ---
3-
FROM node:12-alpine AS base
3+
FROM node:lts-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:12-alpine AS release
26+
FROM node:lts-alpine AS release
2727
WORKDIR /src
2828

2929
# Copy production node_modules

0 commit comments

Comments
 (0)