Skip to content

Commit

Permalink
use default remote docker
Browse files Browse the repository at this point in the history
  • Loading branch information
martinbedouret committed Dec 9, 2023
1 parent 5e4a671 commit 714cc4e
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,22 +34,22 @@ jobs:
working_directory: ~/repo
steps:
- checkout
# - restore_cache:
# keys:
# # when lock file changes, use increasingly general patterns to restore cache
# - yarn-packages-v1-{{ .Branch }}-{{ checksum "yarn.lock" }}
# - yarn-packages-v1-{{ .Branch }}-
# - yarn-packages-v1-
- restore_cache:
keys:
# when lock file changes, use increasingly general patterns to restore cache
- yarn-packages-v1-{{ .Branch }}-{{ checksum "yarn.lock" }}
- yarn-packages-v1-{{ .Branch }}-
- yarn-packages-v1-
# Install and save node_modules to cache
- run: yarn install #--cache-folder ~/.cache/yarn
- run: yarn install --cache-folder ~/.cache/yarn
- save_cache:
paths:
- ~/.cache/yarn
key: yarn-packages-v1-{{ .Branch }}-{{ checksum "yarn.lock" }}
# Build Docker Image
# https://circleci.com/docs/2.0/building-docker-images/#overview
- setup_remote_docker: # (2)
version: 19.03.13
version: default
docker_layer_caching: false # (3)
# build and push Docker image
- run:
Expand Down

0 comments on commit 714cc4e

Please sign in to comment.