diff --git a/.circleci/config.yml b/.circleci/config.yml index 1ac0c02..47a2322 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -88,7 +88,8 @@ jobs: DOCKER_HUB_IMAGE: *dockerhub-image steps: - checkout - - setup_remote_docker + - setup_remote_docker: + version: 20.10.7 - run: name: Build docker image command: docker build -t app . diff --git a/Dockerfile b/Dockerfile index 4f5ebce..af00f65 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,6 @@ WORKDIR /build COPY . . RUN yarn install RUN yarn build -RUN yarn cache clean FROM node:lts