0

I have a simple app that uses sass that I'm trying to set up with pipelines Currently its failing because sass command can't be found. I'm guessing I need to run gem install sass? but how can I add this to my pipeline config? Currently it looks like this:

image: node:7.4.0
pipelines:
default:
- step:
    script:
    - npm install
    - npm install -g grunt
    - npm install -g grunt-cli
    - grunt prod
    - ./heroku-deploy.sh
Ben Gannaway
  • 811
  • 6
  • 19

1 Answers1

1

I fixed this by using a ruby-node image, which gives access to gem install

image: starefossen/ruby-node:2-5
Ben Gannaway
  • 811
  • 6
  • 19