Community Announcements have moved! To stay up to date, please join the new Community Announcements group today. Learn more
×Hello Support team,
I had updated required Node version on bitbucket-pipelines.yml file for my node application.
image : node:22.15.0
Hi @Jaskaran Deol and welcome to the community!
Please allow me to share some context first:
Assuming that your Pipelines builds run on Atlassian's infrastructure or with a self-hosted Linux Docker runner, these builds run in Docker containers. For every step of the build, a Docker container starts based on the image you have specified in your bitbucket-pipelines.yml file, the repo is cloned in this container, and then the commands from that step's script are executed. When the step finishes, the Docker container gets destroyed.
The option image : node:22.15.0 in your bitbucket-pipelines.yml file determines only the build environment, it tells Pipelines to start a Docker container based on the Docker Hub image node, tag 22.15.0, and run the build there. It doesn't have anything to do with the deployment environment.
As far as I know:
Kind regards,
Theodora
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.