-
Notifications
You must be signed in to change notification settings - Fork 47
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
Compilation fails #83
Comments
i found this too. i think it happened because download server is down. download https://downloads.sourceforge.net/project/libjpeg-turbo/1.5.1/libjpeg-turbo-1.5.1.tar.gz and result is <html><head>
<title>SourceForge</title>
<!-- <script src="/js/jquery.com/jquery-1.11.0.min.js"></script> -->
<script src="https://code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="https://sourceforge.net/js/mirrors.js"></script>
<script src="/js/sf.js"></script>
<script>
var DR_loc = DR_parse_hash_url();
if (DR_loc) {
DR_sf_main(DR_loc);
} else {
window.location.href = 'https://sourceforge.net/home.html';
}
</script>
</head><body>
<noscript>
We're sorry -- the Sourceforge site is currently in Disaster Recovery mode, and currently requires
the use of javascript to function. Please check back later.
</noscript>
</body></html> however i can download directly by chrome browser. then 10 hours later i tried to install jpegtran-bin again and compile from source is successful. |
I can confirm the following Dockerfile works right now: FROM node:alpine
RUN apk add --update --no-cache \
make \
g++ \
automake \
autoconf \
libtool \
nasm \
libjpeg-turbo-dev
RUN npm install jpegtran-bin docker build . -t gableroux/jpegtran-bin
👍 |
We are using
gulp-imagemin
but this issue is related exactly to jpegtran. We have a build system running in docker container and base onnode:alpine
, recently it started to fail. The minimal case to replicate the problem.docker run -it node:alpine /bin/sh
Install some build dependencies
apk add --update --no-cache make g++ automake autoconf libtool nasm libjpeg-turbo-dev
npm install jpegtran-bin
We get following output that is worth mentioning
Previously it was running ok on the same build system. I can't say exactly when it first started to fail as I was using cache and I have noticed the problem after cleaning the cache.
The text was updated successfully, but these errors were encountered: