File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -8,13 +8,15 @@ parameters:
8
8
type : boolean
9
9
defaults : &defaults
10
10
docker :
11
- - image : circleci /python:2.7-stretch -browsers
11
+ - image : cimg /python:3.11.0 -browsers
12
12
install_dependency : &install_dependency
13
13
name : Installation of build and deployment dependencies.
14
14
command : |
15
+ sudo apt update
15
16
sudo apt install jq python3-pip
16
- sudo pip3 install awscli --upgrade
17
17
# sudo pip install docker-compose
18
+ sudo pip3 install awscli --upgrade
19
+ sudo pip3 install docker-compose
18
20
install_deploysuite : &install_deploysuite
19
21
name : Installation of install_deploysuite.
20
22
command : |
@@ -23,10 +25,10 @@ install_deploysuite: &install_deploysuite
23
25
cp ./../buildscript/buildenv.sh .
24
26
cp ./../buildscript/awsconfiguration.sh .
25
27
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 " }}
27
29
28
30
save_cache_settings : &save_cache_settings
29
- key : docker-node-modules-{{ checksum "package-lock.json " }}
31
+ key : docker-node-modules-{{ checksum "yarn.lock " }}
30
32
paths :
31
33
- node_modules
32
34
You can’t perform that action at this time.
0 commit comments