Skip to content

Commit 2b2a270

Browse files
authored
Merge pull request #722 from topcoder-platform/CORE-363-fix
CORE-363 security fix-v1
2 parents 9efb6ab + 9222b6f commit 2b2a270

File tree

4 files changed

+3658
-12864
lines changed

4 files changed

+3658
-12864
lines changed

.circleci/config.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
version: 2
22
defaults: &defaults
33
docker:
4-
- image: cimg/python:3.11.0-browsers
4+
- image: cimg/python:3.11.7-browsers
55
install_dependency: &install_dependency
66
name: Installation of build and deployment dependencies.
77
command: |
88
sudo apt update
99
sudo apt install jq
1010
sudo apt install python3-pip
1111
sudo pip3 install awscli --upgrade
12-
sudo pip3 install docker-compose
12+
sudo pip3 install docker==6.1.3
13+
1314
install_deploysuite: &install_deploysuite
1415
name: Installation of install_deploysuite.
1516
command: |
@@ -30,7 +31,7 @@ builddeploy_steps: &builddeploy_steps
3031
- setup_remote_docker
3132
- run: *install_dependency
3233
- run: *install_deploysuite
33-
- restore_cache: *restore_cache_settings_for_build
34+
#- restore_cache: *restore_cache_settings_for_build
3435
- run: ./build.sh ${APPNAME}
3536
- save_cache: *save_cache_settings
3637
- deploy:
@@ -78,6 +79,7 @@ workflows:
7879
branches:
7980
only:
8081
- dev
82+
- CORE-363-fix
8183

8284
# Development builds are executed on "develop" branch only.
8385
- "build-qa":

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
FROM node:14.15.0
2+
FROM node:21.6.0
33

44
# Set working directory. Paths will be relative this WORKDIR.
55
WORKDIR /usr/src/app

0 commit comments

Comments
 (0)