This repository was archived by the owner on Jan 23, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +10
-8
lines changed Expand file tree Collapse file tree 2 files changed +10
-8
lines changed Original file line number Diff line number Diff line change 1
1
version : 2
2
2
defaults : &defaults
3
- docker :
4
- - image : circleci /python:2.7-stretch -browsers
3
+ docker :
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
install_deploysuite : &install_deploysuite
12
14
name : Installation of install_deploysuite.
13
15
command : |
14
- git clone --branch v1.4 https://github.com/topcoder-platform/tc-deploy-scripts ../buildscript
16
+ git clone --branch v1.4.15 https://github.com/topcoder-platform/tc-deploy-scripts ../buildscript
15
17
cp ./../buildscript/master_deploy.sh .
16
18
cp ./../buildscript/buildenv.sh .
17
19
cp ./../buildscript/awsconfiguration.sh .
Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ RUN mkdir /app
7
7
WORKDIR /home/informix
8
8
9
9
RUN mv /etc/apt/sources.list /etc/apt/sources.list.bak && \
10
- echo "deb http://ftp .debian.org/debian/ stretch main non-free contrib" >/etc/apt/sources.list && \
11
- echo "deb http://security .debian.org/ stretch/updates main contrib non-free" >>/etc/apt/sources.list
10
+ echo "deb http://archive .debian.org/debian/ stretch main non-free contrib" >/etc/apt/sources.list && \
11
+ echo "deb http://archive .debian.org/debian-security stretch/updates main contrib non-free" >>/etc/apt/sources.list
12
12
13
13
RUN apt-get -qq update && \
14
14
apt-get -qq install -y wget gcc-6 g++-6 make xz-utils python2.7 git curl
@@ -46,4 +46,4 @@ COPY . /app
46
46
WORKDIR /app
47
47
RUN rm -rf node_modules && npm install --unsafe-perm
48
48
49
- ENTRYPOINT [ "npm" , "start" ]
49
+ ENTRYPOINT [ "npm" , "start" ]
You can’t perform that action at this time.
0 commit comments