Skip to content

Commit 2f5331b

Browse files
fix build error
1 parent 51d6dc9 commit 2f5331b

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.circleci/config.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,15 @@ parameters:
88
type: boolean
99
defaults: &defaults
1010
docker:
11-
- image: circleci/python:2.7-stretch-browsers
11+
- image: cimg/python:3.11.0-browsers
1212
install_dependency: &install_dependency
1313
name: Installation of build and deployment dependencies.
1414
command: |
15+
sudo apt update
1516
sudo apt install jq python3-pip
16-
sudo pip3 install awscli --upgrade
1717
# sudo pip install docker-compose
18+
sudo pip3 install awscli --upgrade
19+
sudo pip3 install docker-compose
1820
install_deploysuite: &install_deploysuite
1921
name: Installation of install_deploysuite.
2022
command: |
@@ -23,10 +25,10 @@ install_deploysuite: &install_deploysuite
2325
cp ./../buildscript/buildenv.sh .
2426
cp ./../buildscript/awsconfiguration.sh .
2527
restore_cache_settings_for_build: &restore_cache_settings_for_build
26-
key: docker-node-modules-{{ checksum "package-lock.json" }}
28+
key: docker-node-modules-{{ checksum "yarn.lock" }}
2729

2830
save_cache_settings: &save_cache_settings
29-
key: docker-node-modules-{{ checksum "package-lock.json" }}
31+
key: docker-node-modules-{{ checksum "yarn.lock" }}
3032
paths:
3133
- node_modules
3234

0 commit comments

Comments
 (0)