Skip to content

Commit

Permalink
Update sass and docker (parse-community#1792)
Browse files Browse the repository at this point in the history
* Update sass and docker

* update lock file

* Add change log

* bump minimum node

* revert node
  • Loading branch information
cbaker6 committed Sep 10, 2021
1 parent 15bd67e commit 0ce85b1
Show file tree
Hide file tree
Showing 4 changed files with 143 additions and 378 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
- 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)
- 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)
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#
# --- Base Node Image ---
FROM node:12-alpine AS base
FROM node:lts-alpine AS base

RUN apk update; \
apk add git;
Expand All @@ -23,7 +23,7 @@ RUN npm run prepare && npm run build

#
# --- Production Image ---
FROM node:12-alpine AS release
FROM node:lts-alpine AS release
WORKDIR /src

# Copy production node_modules
Expand Down
Loading

0 comments on commit 0ce85b1

Please sign in to comment.