Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
version: 2
defaults: &defaults
docker:
- image: cimg/python:3.11.0-browsers
- image: cimg/python:3.11.7-browsers
install_dependency: &install_dependency
name: Installation of build and deployment dependencies.
command: |
sudo apt update
sudo apt install jq
sudo apt install python3-pip
sudo pip3 install awscli --upgrade
sudo pip3 install docker-compose
sudo pip3 install docker==6.1.3

install_deploysuite: &install_deploysuite
name: Installation of install_deploysuite.
command: |
Expand All @@ -30,7 +31,7 @@ builddeploy_steps: &builddeploy_steps
- setup_remote_docker
- run: *install_dependency
- run: *install_deploysuite
- restore_cache: *restore_cache_settings_for_build
#- restore_cache: *restore_cache_settings_for_build
- run: ./build.sh ${APPNAME}
- save_cache: *save_cache_settings
- deploy:
Expand Down Expand Up @@ -78,6 +79,7 @@ workflows:
branches:
only:
- dev
- CORE-363-fix

# Development builds are executed on "develop" branch only.
- "build-qa":
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

FROM node:14.15.0
FROM node:21.6.0

# Set working directory. Paths will be relative this WORKDIR.
WORKDIR /usr/src/app
Expand Down
Loading