Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

root only file system fix #89

Merged
merged 10 commits into from
Jun 15, 2023
Prev Previous commit
Next Next commit
read-only-root-file-system-fix
  • Loading branch information
Gunasekar-K authored May 24, 2023
commit 98645f6375d41cbb5d2e10ca3b968e9923794bd3
10 changes: 6 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
version: 2
defaults: &defaults
docker:
- image: circleci/python:2.7-stretch-browsers
- image: cimg/python:3.11.0-browsers
install_dependency: &install_dependency
name: Installation of build and deployment dependencies.
command: |
sudo apt update
sudo apt install jq
sudo pip install awscli --upgrade
sudo pip install docker-compose
sudo apt install python3-pip
sudo pip3 install awscli --upgrade
sudo pip3 install docker-compose
install_deploysuite: &install_deploysuite
name: Installation of install_deploysuite.
command: |
git clone --branch v1.4.8 https://github.com/topcoder-platform/tc-deploy-scripts ../buildscript
git clone --branch v1.4.15 https://github.com/topcoder-platform/tc-deploy-scripts ../buildscript
cp ./../buildscript/master_deploy.sh .
cp ./../buildscript/buildenv.sh .
cp ./../buildscript/awsconfiguration.sh .
Expand Down