我有一个docker图像,只在亚马逊linux上失败

我在本地机器上创build了一个Docker镜像,但是当我每次尝试运行时都上传到远程机器(Amazon Linux)时,它会返回standard_init_linux.go:178: exec user process caused "no such file or directory"我不知道问题出在哪里,有人可以帮我吗? 这是我的dockerfile:

 # Use an official Golang runtime as a parent image FROM golang:1.8-alpine # Set the working directory to /app WORKDIR /app # Copy the current directory contents into the container at /app ADD . /app # Run weatherai when the container launches ENTRYPOINT ["/app/weatherai"]