docker文件在JS文件中运行自动化testing

我正在尝试创build一个docker文件来运行基于java脚本的项目的seleniumtesting。 下面是我的docker文件到目前为止:

#base image FROM selenium/standalone-chrome #access to the project within docker container - Bundle app source COPY ./seleniumTest/project /app # Install Node.js RUN sudo apt-get update RUN sudo apt-get install --yes curl RUN curl --silent --location https://deb.nodesource.com/setup_8.x | sudo bash - #binding EXPOSE 8080 #Define runtime ENTRYPOINT /app/login.test.js 

同时运行$ docker run -p 4000:80 lamgadekamal/dockertest

返回 :无法find图像“lamkam / dockertest:latest”本地docker:来自守护进程的错误响应:lamkam / dockertest的manifest:最新未find。 无法弄清楚为什么我得到这个?