DEV Community

Krishna P
Krishna P

Posted on

Multiple images in bitbucket pipeline

we can have separate image for each step in the bitbucket pipeline as shown below

pipelines:
  default:
    - step:
        name: Build and test
        **image: node:8.6**
        script:
          - npm install
          - npm test
          - npm run build
        artifacts:
          - dist/**
    - step:
        name: Deploy
        **image: python:3.5.1**
        trigger: manual
        script:
          - python deploy.py
Enter fullscreen mode Exit fullscreen mode

Top comments (0)

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay