-
Notifications
You must be signed in to change notification settings - Fork 50
fix: build vm strategy for the arm machine #1485
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
Conversation
dOrgJelli
left a comment
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.
LGTM!
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.
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.
edit: Niraj fixed the latest version in docker so we good :-)
|
Turned out this was the issue on @krisbitney side so all good |
| # Install curl | ||
| RUN apt-get update | ||
| RUN apt-get -y install curl clang llvm build-essential | ||
| RUN apk add curl build-base pkgconfig openssl-dev bash |
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.
Hey @Niraj-Kamdar, apologies for not asking about this before, but why are we now installing build-base, pkgconfig, openssl-dev and base?
Also I should have caught this before, but for rust builds we require clang, llvm and build-essentials to build & link native C libs.
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.
One answer I found is that build-base is the alpine equivalent of build-essentials.
| @@ -1,13 +1,12 @@ | |||
| FROM rust:1.65.0 as base | |||
| FROM rust:1.66-alpine as base | |||
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.
Also what is the reasoning for moving to alpine?

Changelog