-
Notifications
You must be signed in to change notification settings - Fork 747
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
Make lcli docker image portable #5069
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.
Built and run the updated dockerfile + CI command locally, on an x86 machine tho
build-args: | | ||
FEATURES=portable | ||
context: . | ||
push: true | ||
file: ./lcli/Dockerfile | ||
tags: ${{ env.LCLI_IMAGE_NAME }}:${{ env.VERSION }}${{ env.VERSION_SUFFIX }} |
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 syntax is valid for docker/build-push-action
and is equivalent to the previous manual command
https://github.com/docker/build-push-action/blob/94d76d3bc1409736cb5dc1ada9502bec3a72973c/__tests__/context.test.ts#L89
@Mergifyio queue |
🛑 The pull request has been removed from the queue
|
Pushed a new commit to re-run the target branch check |
@Mergifyio refresh |
✅ Pull request refreshed |
@Mergifyio requeue |
❌ This pull request head commit has not been previously disembarked from queue. |
@Mergifyio queue |
✅ The pull request has been merged automaticallyThe pull request has been merged automatically at 0f345c7 |
* Set lcli docker build to use portable feature (sigp#4370) * Merge remote-tracking branch 'origin/unstable' into unstable
Issue Addressed
Fixes #4370
Proposed Changes
Use
FEATURES=portable
instead ofPORTABLE=true
as proposed here