-
Notifications
You must be signed in to change notification settings - Fork 20
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
lxgui docker image? #69
Comments
Hi! I have planned to release binary packages for Windows once 2.0 finally comes out, but so far I did not consider container images. The main reason is that I am not very familiar with them, so if you know of a good reference, I'd be happy to have a read. My other concern was that that there are quite a few different package systems around (Docker, Flatpak, etc.). I don't know which I should target, whether one is enough, or all of them (I may not have the resources required to maintain it all). I was planning on releasing binaries for Windows because there are essentially only two targets there: 32 and 64 bits, and building from source on that platform is always more painful. For linux obviously this is more complex, but building from source is super easy, hence my assumption was that people would just build it from source. MacOS is a bit in between, but honestly, given Apple's deprecation of OpenGL, I am not sure it will remain in the list of supported platform for much longer. |
We use Docker and Singularity. Docker seems the most widely used. Singularity can convert Docker containers pretty much on the fly. It should be fairly simply to build a Dockerfile based on your Ubuntu instructions in the README and GitHub actions. From the Dockefile can then build an image that can be published on docker hub. It's basically a script that would being with e.g. Windows binaries I am sure can be helpful to some users, e.g., our students to avoid recompiling all the dependencies. |
Speaking of sol2... they have a Dockerfile as well: https://github.com/ThePhD/sol2/blob/develop/Dockerfile |
Thanks for the pointers. From what I read so far, my understanding is that a docker image is meant to run a specific action on the environment defined by the image. In the case of sol2, they used it to build the library and run tests for the continuous integration for various platforms/compilers and dependency versions. I'm very new to this, so please bear with me. If I added a docker image to lxgui, what would you expect it to do?
|
For my purposes I would expect the library with all of its dependencies to be available "system wide" that is in proper /include and /lib folders, etc. Like if you were to install it using apt or dnf or brew, just like your dependencies, except that it is pre-compiled on the image instead from the git repo. As to the ENTRYPOINT it'd be a shell with all the needed environment variables preset by default, such as PATH, LD_LIBRARY_PATH, and anything needed for LXGUI and its dependencies so developers using it can start working with it right away and pulling in their own projects, etc. That was the image can be used also in CI-setups if wanted. In my case, I envision its use as one of the GUI viewers with OpenISS, so yes, there could be a composition of images. |
Thanks, I now have a better understanding of what you are after. If I were to put together such an image and put it on hub.docker.com, would it work for you if I just based it off |
Yes, I think that would work. Thank you! |
Ok that sounds easy enough. I will put that on the TODO list for the release. Unless you would be interested in having an image off the master branch? That branch isn't 100% API stable yet, I am waiting for the release to actually freeze the API. But it is 99% of the way there. |
Are the plans on making a docker image of lxgui on dockerhub or some such?
Thanks!
The text was updated successfully, but these errors were encountered: