From 4df50884b78383efd0a45ab9ccd89ca1f70f690c Mon Sep 17 00:00:00 2001 From: guidezSeb Date: Sat, 16 Jan 2021 14:04:22 +0100 Subject: [PATCH] :construction_worker: change node version --- .circleci/config.yml | 8 ++++---- Dockerfile | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 3c0d2d4..05b6e84 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,7 +2,7 @@ version: 2.1 jobs: install: docker: - - image: circleci/node:9.5 + - image: circleci/node:latest steps: - checkout - restore_cache: @@ -16,7 +16,7 @@ jobs: - node_modules test: docker: - - image: circleci/node:9.5 + - image: circleci/node:latest steps: - checkout - restore_cache: @@ -27,7 +27,7 @@ jobs: command: yarn test prod-build: docker: - - image: circleci/node:9.5 + - image: circleci/node:latest steps: - checkout - restore_cache: @@ -47,7 +47,7 @@ jobs: - dist deploy-netlify: docker: - - image: circleci/node:9.5 + - image: circleci/node:latest working_directory: ~/deploy-netlfify steps: - attach_workspace: diff --git a/Dockerfile b/Dockerfile index 08fc84c..f08938c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:9.5 +FROM node:latest WORKDIR /app