File tree 9 files changed +14
-9
lines changed
9 files changed +14
-9
lines changed Original file line number Diff line number Diff line change @@ -86,8 +86,9 @@ COPY dotfiles/sshconfig .ssh/config
86
86
RUN az extension add --name azure-devops
87
87
RUN curl -LO https://github.com/sam-mfb/git-credential-forwarder/releases/download/v${GCF_VERSION}/git-credential-forwarder.zip
88
88
RUN unzip git-credential-forwarder.zip
89
- RUN git config --global credential.helper '!f(){ node ~/gcf-client.js $*; }; f'
90
- RUN git config --global credential.https://dev.azure.com.useHttpPath true
89
+ COPY setup-gcf-client.sh ./setup-gcf-client.sh
90
+ RUN sudo chmod 755 ./setup-gcf-client.sh
91
+ RUN ./setup-gcf-client.sh
91
92
ENV GIT_CREDENTIAL_FORWARDER_SERVER host.docker.internal:${GCF_PORT}
92
93
ENTRYPOINT bash
93
94
Original file line number Diff line number Diff line change 1
- # /bin/bash
1
+ #! /bin/bash
2
2
3
3
IMAGE_TARGET=" coc-dev"
4
4
IMAGE_TAG=" coc-dev"
Original file line number Diff line number Diff line change 1
- # /bin/sh
1
+ #! /bin/sh
2
2
3
3
IMAGE_TARGET=" dotnet-dev-x64"
4
4
IMAGE_TAG=" align-services-dev-x64"
Original file line number Diff line number Diff line change 1
- # /bin/sh
1
+ #! /bin/sh
2
2
3
3
IMAGE_TARGET=" dotnet-dev"
4
4
IMAGE_TAG=" align-services-dev"
Original file line number Diff line number Diff line change 1
- # /bin/bash
1
+ #! /bin/bash
2
2
3
3
run_func () {
4
4
# flags to easily delete image and container
Original file line number Diff line number Diff line change 1
- # /bin/bash
1
+ #! /bin/bash
2
2
3
3
IMAGE_TARGET=" lisp-dev"
4
4
IMAGE_TAG=" lisp-dev"
Original file line number Diff line number Diff line change 1
- # /bin/bash
1
+ #! /bin/bash
2
2
3
3
IMAGE_TARGET=" pwsh-dev-align"
4
4
IMAGE_TAG=" align-pwsh-dev"
Original file line number Diff line number Diff line change 1
- # /bin/bash
1
+ #! /bin/bash
2
2
3
3
IMAGE_TARGET=" ts-dev-align"
4
4
IMAGE_TAG=" align-ts-dev"
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ git config --global credential.helper ' !f(){ node ~/gcf-client.js $*; }; f'
4
+ git config --global credential.https://dev.azure.com.useHttpPath true
You can’t perform that action at this time.
0 commit comments