Building from source: six small PRs and some questions #2302
Unanswered
naanlizard
asked this question in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
We run a fork of OME in production and build it from source. We've found some bugs (we think) along the way. We opened a few small PRs:
openh264 build. Every other dependency builds with the parallel job count; openh264 is
serial.
.dockerignore.The build context ships
.git, which changes on every commit, so no layer afterCOPY . ...ever caches.archives with static whisper.
newer for
OME_THREAD_SAFETY. The annotations need 21; the installer provides thedistribution's Clang, which is 14 on the Dockerfile's own base image.
override from wiping the CMake cache. A second configure can delete the cache and re-run
with defaults, so a build asking for Release comes out Debug.
when it was not asked for. Reinstalling a single dependency also apt-installs a compiler.
And some stuff that I don't think I know what to do about, so I'm just leaving a message here.
All reactions