Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docker - fix docker image tag for node 20 #8215

Merged
merged 2 commits into from Nov 30, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
30 changes: 15 additions & 15 deletions .circleci/config.yml
Expand Up @@ -260,8 +260,8 @@ jobs:
- attach_workspace:
at: ./
- docker_build_and_push:
docker_build_arg_value: "node:20.3.1"
docker_tag_suffix: "-node-20.3.1"
docker_build_arg_value: "node:20.10.0"
docker_tag_suffix: "-node-20.10.0"

# docker_non_root_build:
# machine:
Expand Down Expand Up @@ -1545,12 +1545,12 @@ workflows:
# branches:
# only: circle-esbuild-cache
# uncomment and change the filter branch name to debug the bvm bundle jobs
# bvm_bundle_debug:
# jobs:
# - checkout_code:
# filters:
# branches:
# only: ci-upgrade-yarn
bvm_bundle_debug:
jobs:
- checkout_code:
filters:
branches:
only: docker-node-20
# - bundle_version_posix:
# filters:
# branches:
Expand All @@ -1575,10 +1575,10 @@ workflows:
# requires:
# - checkout_code
# - harmony_publish_to_gcloud
# - docker_build_node_20:
# requires:
# - checkout_code
# - harmony_publish_to_gcloud
- docker_build_node_20:
requires:
- checkout_code
# - harmony_publish_to_gcloud
# # - docker_non_root_build:
# # requires:
# # - checkout_code
Expand All @@ -1597,9 +1597,9 @@ workflows:
# - server_docker_build_node_18:
# requires:
# - docker_build_node_18
# - server_docker_build_node_20:
# requires:
# - docker_build_node_20
- server_docker_build_node_20:
requires:
- docker_build_node_20
# uncomment to print node version on windows default orb
# windows_print_node_version_workflow:
# jobs:
Expand Down