My production app is running on Ubuntu 16.04 and manual installation via SSH works fine (npm install, npm test etc).
However, a specific npm module (node-sass) just wont work on the the Docker image I’m using in the CircleCI config file. The image in question is circleci/node:chakracore-8.11.1. It will not install node-sass.
It seems all the CircleCI Node.js images are based on Debian where this specific package won’t install.
Are you aware of a Docker image I can use for my CircleCI build that is based on Ubuntu 16.04?
I want to avoid going through endless hours of configuration and pain. Any ideas?
Or perhaps just abandon node-sass and compile my CSS on my localhost and check it in to repo and omit it from the build step?
Any help would be appreciated.