-
-
Notifications
You must be signed in to change notification settings - Fork 24
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
Add recipe for bundled tarball including static libraries #102
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just one little question, the rest is good to 🚀
|
||
ENV CFLAGS="-fPIC -pipe ${release:+-O2}" | ||
|
||
ARG libpcre_version |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Out of consistency with the rest of the file, I'll put this line below the FROM debian AS libpcre
(feel free to ignore)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This arg is also needed for the final stage, hence it's put here because all of the following stages derive from the base one.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems this was actually incorrect. But it worked. Now it doesn't 🤷
The ARG instructions need to be moved into each stage.
Resolves crystal-lang/crystal#9285