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