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

Commit eb01804

Browse files
authored
Merge pull request #466 from topcoder-platform/develop
read-only-root file fix
2 parents 6661c2e + 2e0a876 commit eb01804

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.circleci/config.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,22 @@
11
version: 2
22
defaults: &defaults
33
docker:
4-
- image: circleci/python:2.7-stretch-browsers
4+
- image: cimg/python:3.11.0-browsers
55
install_dependency: &install_dependency
66
name: Installation of build and deployment dependencies.
77
command: |
8+
sudo apt update
89
sudo apt install jq
9-
sudo pip install awscli --upgrade
10-
sudo pip install docker-compose
10+
sudo apt install python3-pip
11+
sudo pip3 install awscli --upgrade
12+
sudo pip3 install docker-compose
1113
no_output_timeout: 30m
1214

1315

1416
install_deploysuite: &install_deploysuite
1517
name: Installation of install_deploysuite.
1618
command: |
17-
git clone --branch v1.4.1 https://github.com/topcoder-platform/tc-deploy-scripts ../buildscript
19+
git clone --branch v1.4.15 https://github.com/topcoder-platform/tc-deploy-scripts ../buildscript
1820
cp ./../buildscript/master_deploy.sh .
1921
cp ./../buildscript/buildenv.sh .
2022
cp ./../buildscript/awsconfiguration.sh .

docker/Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ COPY . /topcoder-x-ui
88
WORKDIR /topcoder-x-ui
99

1010
# Install the dependencies from package.json
11+
RUN npm config set unsafe-perm true
12+
RUN git config --global url."https://git@".insteadOf git://
1113
RUN npm install
1214
RUN npm run build
1315
#RUN npm test

0 commit comments

Comments
 (0)