简体   繁体   中英

Docker Run error with ENTRYPOINT

I am very new to Docker and I am able to successfully create an Image from Docker file but when I pulled it and ran a docker start on that it threw following error:

Error response from daemon: oci runtime error: 
container_linux.go:247: starting container process caused "exec: \"./Myfolder\": stat ./Myfolder: no such file or directory".

The only place that I mentioned /Myfolder is in docker File ENTRYPOINT

as below ENTRYPOINT ["./Myfolder"]

While my Dockerfile looks like following:

FROM microsoft/dotnet:1.1.1-runtime
WORKDIR /opt/outputDirectory
ENTRYPOINT ["./Myfolder"]
COPY output /opt/outputDirectory

and this is assuming my entry point is the ENTRYPOINT project's directory name (the one containing /bin) what could I be missing?

ENTRYPOINT specify the program that runs inside the container. You've put a directory.

See this example:

FROM microsoft/dotnet:1.0-runtime
WORKDIR /app
COPY out ./
ENTRYPOINT ["dotnet", "dotnetapp.dll"]

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM