This repository was archived by the owner on Mar 13, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 1
1
version : 2
2
2
defaults : &defaults
3
3
docker :
4
- - image : circleci /python:2.7-stretch -browsers
4
+ - image : cimg /python:3.11.0 -browsers
5
5
install_dependency : &install_dependency
6
6
name : Installation of build and deployment dependencies.
7
7
command : |
8
+ sudo apt update
8
9
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
11
13
no_output_timeout : 30m
12
14
13
15
14
16
install_deploysuite : &install_deploysuite
15
17
name : Installation of install_deploysuite.
16
18
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
18
20
cp ./../buildscript/master_deploy.sh .
19
21
cp ./../buildscript/buildenv.sh .
20
22
cp ./../buildscript/awsconfiguration.sh .
Original file line number Diff line number Diff line change @@ -8,6 +8,8 @@ COPY . /topcoder-x-ui
8
8
WORKDIR /topcoder-x-ui
9
9
10
10
# Install the dependencies from package.json
11
+ RUN npm config set unsafe-perm true
12
+ RUN git config --global url."https://git@" .insteadOf git://
11
13
RUN npm install
12
14
RUN npm run build
13
15
# RUN npm test
You can’t perform that action at this time.
0 commit comments