Skip to content

Commit

Permalink
Merge pull request #128 from sergiitk/chore/node-update
Browse files Browse the repository at this point in the history
[CLEANUP chore-dependencies] Major node upgrade node to the last LTE: 12.14.1
  • Loading branch information
sergiitk authored Jan 21, 2020
2 parents 3b0457e + 33182c6 commit 0ff3abc
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
build:
<<: &docker_node
docker:
- image: circleci/node:10.16.0-stretch
- image: circleci/node:12.14.1-stretch
working_directory: ~/repo
steps:
- checkout
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# https://hub.docker.com/_/node/
FROM node:10.16.0-alpine
FROM node:12.14.1-alpine
ARG VCS_REF=not_ci
LABEL org.label-schema.description="PagerDuty on-call dashboard widget" \
org.label-schema.name="PagerBeauty" \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-dev
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# https://hub.docker.com/_/node/
FROM node:10.16.0-alpine
FROM node:12.14.1-alpine
ARG VCS_REF=not_ci
LABEL org.label-schema.description="PagerDuty on-call dashboard widget" \
org.label-schema.name="PagerBeauty" \
Expand Down
8 changes: 4 additions & 4 deletions Dockerfile-test-acceptance
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# https://hub.docker.com/_/node/
FROM node:10.16.0-alpine
FROM node:12.14.1-alpine
ARG VCS_REF=not_ci
LABEL org.label-schema.description="PagerDuty on-call dashboard widget" \
org.label-schema.name="PagerBeauty" \
Expand Down Expand Up @@ -34,9 +34,9 @@ RUN yarn install --frozen-lockfile
# ---------- Acceptance test image from here
# https://github.com/GoogleChrome/puppeteer/blob/master/docs/troubleshooting.md

# Installs latest Chromium 72.0.3626.121-r0 available in Apline 3.9:
# Alpine: https://github.com/nodejs/docker-node/blob/170ed2/10/alpine/Dockerfile
# Chromium: https://pkgs.alpinelinux.org/package/v3.9/community/x86_64/chromium
# Installs latest Chromium 79.0.3945.88-r0 available in Apline 3.11:
# Alpine: https://github.com/nodejs/docker-node/blob/8b8ee/12/alpine3.11/Dockerfile
# Chromium: https://pkgs.alpinelinux.org/package/v3.11/community/x86_64/chromium
RUN apk update && apk upgrade && \
apk add --no-cache \
chromium
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
"main": "./src/pagerbeauty",
"module": "./src/pagerbeauty",
"engines": {
"node": "^10.14.0",
"npm": "^6.4.1",
"yarn": "^1.12.0"
"node": "^12.14.0",
"npm": "^6.13.1",
"yarn": "^1.21.1"
},
"scripts": {
"test": "npm run test:unit",
Expand Down

0 comments on commit 0ff3abc

Please sign in to comment.