-
Notifications
You must be signed in to change notification settings - Fork 462
[BUG] : Need to update docker file as docker build is failing for higher versions of this project #1659
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
Comments
I would like to work on this |
i have already fixed this issue waiting for reply from the maintainers |
Which os you are using?? |
FROM alpine:latest as base FROM base as builder RUN apk update && apk add --no-cache --update WORKDIR /root RUN git clone https://github.com/gpac/gpac.git WORKDIR /root RUN find /root/ccextractor -type f -exec dos2unix {} + RUN ls -la /root/ccextractor && ls -la /root/ccextractor/linux RUN export LIB_CLANG_PATH=$(find / -name 'libclang*.so*' 2>/dev/null | grep -v 'No such file' | head -n 1 | xargs dirname) WORKDIR /root/ccextractor/linux RUN cp /root/ccextractor/linux/ccextractor /ccextractor && rm -rf /root/ccextractor FROM base as final RUN find / -name 'libz.so*' 2>/dev/null COPY --from=builder /lib/ld-musl-x86_64.so.1 /lib/ COPY --from=builder /usr/lib/libssl.so.3 /usr/lib/ COPY --from=builder /ccextractor / ENTRYPOINT ["/ccextractor"] This is the updated docker file change it with existing one and then try to run docker build -t ccextractor . |
@Ni1esh-Yadav Just tried and the latest dockerfile works. Try it out and close the issue or put an update. Looking forwards to it. Thanks. |
Just waiting for the maintainers to respond so I can close it as in few systems the docker build is failing that's why I have raised a issue!! Thank you |
Are you talking about #1660 ? But if the current master is working (I assume someone else also fixed it), is there a problem right now? |
Okay I will be checking the updated docker file and if it works I will close this pr and if not I will resolve the merge conflict. |
Hi @Ni1esh-Yadav Can you try with |
Description:
The current Dockerfile needs an update as the Docker build process is failing due to outdated dependencies and/or configuration issues.
Steps to Reproduce:
git clone https://github.com/CCExtractor/ccextractor.git cd ccextractor/docker
docker build -t ccextractor .
Expected Behavior:
The Docker image should build successfully without errors.
Actual Behavior:
The build process fails due to outdated dependencies and/or broken installation steps in the Dockerfile.
Suggested Fix:
System Information:
The text was updated successfully, but these errors were encountered: