File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed
Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ load_pubkey() {
1414 eval $( ssh-agent) > /dev/null 2>&1
1515 trap " kill $SSH_AGENT_PID " EXIT
1616
17- SSH_ASKPASS=$( dirname $0 ) /askpass.sh DISPLAY= ssh-add $private_key_path > /dev/null
17+ SSH_ASKPASS_REQUIRE=force SSH_ASKPASS=$( dirname $0 ) /askpass.sh DISPLAY= ssh-add $private_key_path > /dev/null
1818
1919 mkdir -p ~ /.ssh
2020 cat > ~ /.ssh/config << EOF
Original file line number Diff line number Diff line change 1- # temporaily use alpine:3 since alpine:edge uses musl-1.2.1 which breaks
2- # docker for mac due to (lack of) ipv6 dns resolution
3- FROM alpine:3 AS resource
1+ ARG base_image= alpine:latest
2+
3+ FROM ${base_image} AS resource
44
55RUN apk --no-cache add \
66 bash \
Original file line number Diff line number Diff line change 1- FROM ubuntu:bionic AS resource
1+ ARG base_image
2+
3+ FROM ${base_image} AS resource
24
35RUN apt-get update \
46 && apt-get install -y --no-install-recommends \
You can’t perform that action at this time.
0 commit comments