|
|
|
|
|
by ffsm8
716 days ago
|
|
Not the person you asked, but I've done something like that several years ago, too. From alpine
RUN apk add --no-cache $yourDependencies
Add theSoftware /bin/theSoftware
CMD rc-service yourDependency start && /bin/theSoftware
You probably want to make that CMD into a bash script, produce theSoftware in another "from $yourRuntime as builderImage" and COPY from=builderImage thoughI'd strongly encourage you to explore the image with dive after to visualize whats been added on which command while you're changing the dockerfile https://github.com/wagoodman/dive I'd push back on that being a good idea though. It's okayish, but it'd be better if the software had no dependencies, falling back to file storage/embedded DB. But that's obviously scope screep, so probably not worth the effort if your chosen framework doesn't give you a drop in option for that. Basically ymmv, I wouldn't touch a software that nests multiple daemons into the same image. It's a hack for easier demos or transient starts on dev machines, but that's it. Your orm does support sqlite though, that'd probably be better then nesting a database daemon |
|
Will probably need to start with an Ubuntu image instead of Alpine to keep changes to a minimum.
Recommendations for an “rc-service” to use in this context ?