You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried to run livepython in a docker image which I build (docker build -t livepython .) with the following Dockerfile.
# use base image which provides Python latest and Node 10.x
FROM nikolaik/python-nodejs:latest
# install livepython
RUN npm install livepython
# electron default port
EXPOSE 8080
# run livepython executable
ENTRYPOINT ["livepython"]
CMD ["--help"]
If I run the image (docker run -it livepython) the executable cannot be found docker: Error response from daemon: OCI runtime create failed: container_linux.go:348: starting container process caused "exec: \"livepython\": executable file not found in $PATH": unknown. I could not find an executable in the container. Can you help out?
The text was updated successfully, but these errors were encountered:
I tried to run
livepython
in a docker image which I build (docker build -t livepython .
) with the followingDockerfile
.If I run the image (
docker run -it livepython
) the executable cannot be founddocker: Error response from daemon: OCI runtime create failed: container_linux.go:348: starting container process caused "exec: \"livepython\": executable file not found in $PATH": unknown.
I could not find an executable in the container. Can you help out?The text was updated successfully, but these errors were encountered: