Skip to content

Commit

Permalink
inject env variables into .devcontainer/Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Claire McCarthy committed Oct 1, 2019
1 parent 2335743 commit c8f76a7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,10 @@ ENV GO111MODULE=on

# Set the default shell to bash instead of sh

ENV AZURE_CLIENT_ID=""
ENV AZURE_CLIENT_SECRET=""
ENV AZURE_SUBSCRIPTION_ID=""
ENV AZURE_TENANT_ID=""
ENV AZURE_CLIENT_ID=${AZURE_CLIENT_ID}
ENV AZURE_CLIENT_SECRET=${AZURE_CLIENT_SECRET}
ENV AZURE_SUBSCRIPTION_ID=${AZURE_SUBSCRIPTION_ID}
ENV AZURE_TENANT_ID=${AZURE_TENANT_ID}
ENV KUBECONFIG="/root/.kube/kind-config-kind"

COPY ./Makefile ./
Expand Down

0 comments on commit c8f76a7

Please sign in to comment.