Skip to content

Commit

Permalink
updated node to 12
Browse files Browse the repository at this point in the history
  • Loading branch information
dannycoates committed Apr 30, 2020
1 parent 01110b4 commit 89469e3
Show file tree
Hide file tree
Showing 5 changed files with 4,733 additions and 7,075 deletions.
10 changes: 5 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2.0
jobs:
test:
docker:
- image: circleci/node:10-browsers
- image: circleci/node:12-browsers
steps:
- checkout
- run: npm ci
Expand All @@ -12,7 +12,7 @@ jobs:
path: coverage
integration_tests:
docker:
- image: circleci/node:10-browsers
- image: circleci/node:12-browsers
steps:
- checkout
- run: npm ci
Expand All @@ -21,7 +21,7 @@ jobs:
command: ./scripts/bin/run-integration-test-circleci.sh
deploy_dev:
docker:
- image: circleci/node:10
- image: circleci/node:12
steps:
- checkout
- setup_remote_docker
Expand All @@ -30,7 +30,7 @@ jobs:
- run: docker push mozilla/send:latest
deploy_vnext:
docker:
- image: circleci/node:10
- image: circleci/node:12
steps:
- checkout
- setup_remote_docker
Expand All @@ -39,7 +39,7 @@ jobs:
- run: docker push mozilla/send:vnext
deploy_stage:
docker:
- image: circleci/node:10
- image: circleci/node:12
steps:
- checkout
- setup_remote_docker
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


# Build project
FROM node:10 AS builder
FROM node:12 AS builder
RUN set -x \
# Add user
&& addgroup --gid 10001 app \
Expand All @@ -27,7 +27,7 @@ RUN set -x \


# Main image
FROM node:10-slim
FROM node:12-slim
RUN set -x \
# Add user
&& addgroup --gid 10001 app \
Expand Down
Loading

0 comments on commit 89469e3

Please sign in to comment.