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 github actions for ov-client use the default github runners. It would be much better to have specialized docker images with the required tools preinstalled
The text was updated successfully, but these errors were encountered:
Do you mean to have as a result something like this:
FROM ovimage
.....
RUN ...
ENTRYPOINT [...]
where ovimage(or whatever name) is something which has all the necessary packages/tools installed so that you can derive from it?
If I look at your docker images, they are just doing some make. So if you build the image and run it via docker run they are exiting immediately after the make command.
Maybe a docker image which starts the client would benefit more?
We need the dockerimages for building (and packaging, and maybe separate ones for a deployment test of the packages), but not to deploy the the ov-client.
The specialized docker images would be needed mostly to have the correct build environment (and more build environments than github supports with its standard runners out of the box).
the github actions for ov-client use the default github runners. It would be much better to have specialized docker images with the required tools preinstalled
The text was updated successfully, but these errors were encountered: