-
Notifications
You must be signed in to change notification settings - Fork 143
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 the bicep binary to the Iron Bank container #639
Comments
# Install Bicep
RUN \
# Fetch the latest Bicep CLI binary
curl -Lo bicep https://github.com/Azure/bicep/releases/${BICEP_VERSION}/download/bicep-linux-x64 \
# Mark it as executable
&& chmod +x ./bicep \
# Add bicep to your PATH (requires admin)
&& mv ./bicep /usr/local/bin/bicep \
# Verify you can now access the 'bicep' command
&& bicep --help |
@glennmusa will add another backlog item for adding the Bicep binary to the development container. |
Created #646 for the development container updates |
brooke-hamilton
moved this from In Progress
to Future Backlog
in Mission Landing Zone 2022
Mar 30, 2022
Iron Bank container no longer supported or updated for deployment. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Benefit/Result/Outcome
When working in clouds that do not have internet connection, it is sometimes necessary to make code changes to the Bicep modules. Having a full installation of Bicep available will allow for the generation of .json files
Description
Select the latest version of Bicep and add this to the container that is hosted in the Iron Bank repo.
Acceptance Criteria
The text was updated successfully, but these errors were encountered: