File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -203,10 +203,10 @@ docker_base:
203203 if [ " $$ {response}" = " 200" ]; then \
204204 echo " Found base Dockerfile" ; \
205205 curl -s " $( BASE_DOCKERFILE) " | docker build -t $(LOCAL_CACHE_IMAGE_BASE ) -f - . ; \
206- echo " FROM $( LOCAL_CACHE_IMAGE_BASE) \nWORKDIR /edgex-go\nCOPY go.mod .\nRUN go mod download" | docker build -t $(LOCAL_CACHE_IMAGE ) -f - . ; \
206+ printf " FROM $( LOCAL_CACHE_IMAGE_BASE) \nWORKDIR /edgex-go\nCOPY go.mod .\nRUN go mod download" | docker build -t $(LOCAL_CACHE_IMAGE ) -f - . ; \
207207 else \
208208 echo " No base Dockerfile found. Using golang:$( GO_VERSION) -alpine" ; \
209- echo " FROM golang:$( GO_VERSION) -alpine\nRUN apk add --update make git\nWORKDIR /edgex-go\nCOPY go.mod .\nRUN go mod download" | docker build -t $(LOCAL_CACHE_IMAGE ) -f - . ; \
209+ printf " FROM golang:$( GO_VERSION) -alpine\nRUN apk add --update make git\nWORKDIR /edgex-go\nCOPY go.mod .\nRUN go mod download" | docker build -t $(LOCAL_CACHE_IMAGE ) -f - . ; \
210210 fi
211211
212212dcore : dmetadata ddata dcommand
You can’t perform that action at this time.
0 commit comments