故事:
我在我的本地建立了一个码头图像,def foldStrings(str1, str2):
newStr = ""
counter = 0
if len(str2) == len(str1):
while counter < len(str2):
for element in str1:
for index in str2:
newStr = newStr + element
newStr = newStr + index
counter += 1
return newStr
else:
return "The two Strings are not equal in length"
我可以在本地使用泊坞窗图片中的laradock/workspace
和npm
我在AWS EC2 Container上传了相同的图像,并在AWS CodeBuild中使用它。
问题:
但当我在node
内执行node -v
时,它无法正常工作,并始终返回状态127.
参考:
这是我的buildspec.yml的简单代码:
buildspec.yml