getting error while creating docker image by using git repo for docker-build-pack

1
Hello guys I am getting error to build docker image by using docker build pack for latest version v3.5.3 as well v3.5.0 please any one have idea regarding this what needs to be fixed, checked with mda file it is downloadable from powershell    PS D:\python\docker-mendix-buildpack> wget https://s3-eu-west-1.amazonaws.com/mx-buildpack-ci/BuildpackTestApp-mx-7-16.mda -o downloads/application.mpk PS D:\python\docker-mendix-buildpack> make get-sample mkdir -p downloads build wget https://s3-eu-west-1.amazonaws.com/mx-buildpack-ci/BuildpackTestApp-mx-7-16.mda -o downloads/application.mpk process_begin: CreateProcess(NULL, wget https://s3-eu-west-1.amazonaws.com/mx-buildpack-ci/BuildpackTestApp-mx-7-16.mda -o downloads/application.mpk, ...) failed. make (e=2): The system cannot find the file specified. make: *** [Makefile:8: get-sample] Error 2  
asked
2 answers
0

The error message suggests that the  'wget' command is not able to find the specified file, which is causing the 'make' command to fail. You might want to check if the path for the output file is correct or if the  'wget' command is failing due to a network issue.

answered
0

wget command is working fine with command line while I trying to hit.

answered