You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The App Service image has Ruby 2.6.2 and Bundler 1.17.8.
This makes it very difficult to run DevOps tools that also run on the App Service plan. Being unable to run pipelines on environments that match whats being deployed to can cause version conflicts during deployments.
The text was updated successfully, but these errors were encountered:
And finally in the actual Release pipeline, my startup command is gem install bundler:2.1.4 && bundle install && bundle exec puma config.ru -C config/puma.rb
This solves the issue of each environment having different versions, that being the build agent, the azure app service, and the container that runs the web app, all of which need to have the right versions of stuff to run smoothly. If you can call it that.
The App Service images seem to be lacking behind in updates while the DevOps pipelines push forward.
For instance, the macOS 10.14/10.15 images have Ruby 2.6.5 and Bundler 2.1.4
https://github.com/microsoft/azure-pipelines-image-generation/blob/master/images/macos/macos-10.14-Readme.md
The App Service image has Ruby 2.6.2 and Bundler 1.17.8.
This makes it very difficult to run DevOps tools that also run on the App Service plan. Being unable to run pipelines on environments that match whats being deployed to can cause version conflicts during deployments.
The text was updated successfully, but these errors were encountered: