Skip to content

Commit 8258bd0

Browse files
authored
Merge pull request #122 from topcoder-platform/Build-fix-with-root-file-readonly
Build fix
2 parents b95836b + 3aa97e7 commit 8258bd0

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,17 +8,19 @@ 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 install jq python3-pip
15+
sudo apt update
16+
sudo apt install jq
17+
sudo apt install python3-pip
1618
sudo pip3 install awscli --upgrade
17-
# sudo pip install docker-compose
19+
sudo pip3 install docker-compose
1820
install_deploysuite: &install_deploysuite
1921
name: Installation of install_deploysuite.
2022
command: |
21-
git clone --branch v1.4.14 https://github.com/topcoder-platform/tc-deploy-scripts ../buildscript
23+
git clone --branch v1.4.15 https://github.com/topcoder-platform/tc-deploy-scripts ../buildscript
2224
cp ./../buildscript/master_deploy.sh .
2325
cp ./../buildscript/buildenv.sh .
2426
cp ./../buildscript/awsconfiguration.sh .

0 commit comments

Comments
 (0)