Skip to content

Commit

Permalink
feat(devcontainer): install Azure CLI
Browse files Browse the repository at this point in the history
allow interfacing with Azure inside devcontainer
  • Loading branch information
thekaveman committed Feb 2, 2024
1 parent 3c3fdc9 commit d5125e4
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
FROM benefits_client:latest

# install Azure CLI
# https://learn.microsoft.com/en-us/cli/azure/install-azure-cli-linux?pivots=apt
USER root
RUN curl -sL https://aka.ms/InstallAzureCLIDeb | bash
USER $USER

# install devcontainer requirements
RUN pip install -e .[dev,test]

Expand Down

0 comments on commit d5125e4

Please sign in to comment.