-
Notifications
You must be signed in to change notification settings - Fork 11
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
Docker build fails #4
Comments
If the ipp libraries are not being located, you might try poking through whichever dockerfile you are using ( e.g. Dockerfile.ubuntu22.04 ). |
@arianaa30 @cabirdme OpenVisualCloud namespace owners changed and I hope you are still interested in almost cost free video upscaling based on Xeon processors :-). First of all I would encourage you to check Intel® Tiber™ Broadcast Suite package that is updated at least weekly and it includes major functionalities including RAISR Video Super Resolution Library ffmpeg plugin - it should build the optimized image just by running build script: Intel® Tiber™ Broadcast Suite package docker build script Also there will be major update to this repository (RAISR), all the build scripts and Dockerfiles that fixes most of possible issues in build process and address missed best known methods for containers creation. @arianaa30 To reference your issue, I will use Ubuntu 22.04 Docker as an example. The Dockerfile workflow only copy pre-assumed set of libraries from Intel IPP image in build stage to 'clean' Ubuntu 22.04 base stage, and for some processors this set is of dynamic libs is not enough (probably there is a chain of dependencies somewhere). Add just # current
RUN \
ldd ${PREFIX}/bin/ffmpeg | cut -d ' ' -f 3 | xargs -i cp {} /usr/local/lib/ && \
cp /opt/intel/oneapi/ipp/latest/lib/intel64/libippik0.so.10.8 /usr/local/lib && \
cp /opt/intel/oneapi/ipp/latest/lib/intel64/libippsk0.so.10.8 /usr/local/lib && \ # modified
RUN \
ldd ${PREFIX}/bin/ffmpeg | cut -d ' ' -f 3 | xargs -i cp {} /usr/local/lib/ && \
cp /opt/intel/oneapi/ipp/latest/lib/intel64/libippil9.so.10.8 /usr/local/lib && \
cp /opt/intel/oneapi/ipp/latest/lib/intel64/libippik0.so.10.8 /usr/local/lib && \
cp /opt/intel/oneapi/ipp/latest/lib/intel64/libippsk0.so.10.8 /usr/local/lib && \ and just build the Dockerfile then, It will no longer fail. |
Just now I see that I have made the comments using my private account instead of using the corporate one - so in case you @arianaa30 or/and @cabirdme will need assistance please contact me using this one - I check the the above one very rarely |
I was trying to build the docker image. But it failed:
The text was updated successfully, but these errors were encountered: