-
Notifications
You must be signed in to change notification settings - Fork 116
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: Docker image not working #753
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #753 +/- ##
=======================================
Coverage 92.91% 92.91%
=======================================
Files 110 110
Lines 2878 2881 +3
Branches 578 581 +3
=======================================
+ Hits 2674 2677 +3
Misses 185 185
Partials 19 19 ☔ View full report in Codecov by Sentry. |
@@ -1,5 +1,7 @@ | |||
CHANGELOG | |||
===================================== | |||
| June 10, 2024: fix: Docker image not working `#753 <https://github.com/mergeability/mergeable/pull/753>`_ | |||
| June 10, 2024: feat: publish multi arch docker image to dockerhub `#751 <https://github.com/mergeability/mergeable/pull/751>`_ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added changelog entry for previous PR
@shine2lay @jusx please have a look :) |
🎉 This PR is included in version 2.18.1 🎉 The release is available on: Your semantic-release bot 📦🚀 |
The old
Dockerfile
was using nodejs version 16 and not building at all.This PR adds a new setup created with
docker init
.It uses node 18 now as stated in the
package.json
.These versions need to be kept in sync, so updating the nodejs version must also happen in the
Dockerfile
.Executing the new docker image works: