我想dockerize我的應用程序運行shell,我想運行,爲了進入我的容器,看包裝是否正確安裝,文件被複制等無法在我的容器
這裏是我的Dockerfile:
FROM node:8.6
RUN mkdir /app
WORKDIR /app
COPY .*.json .
COPY src/ .
USER node
RUN yarn global add @angular/cli
EXPOSE 4200
的問題是,我無法通過docker run
運行我的容器:
docker run my-notes -it --rm ash
我看到的錯誤:
container_linux.go:262: starting container process caused "exec: \"-it\": executable file not found in $PATH"
docker: Error response from daemon: oci runtime error: container_linux.go:262: starting container process caused "exec: \"-it\": executable file not found in $PATH".
ERRO[0000] error waiting for container: context canceled
我在做什麼錯?
另外'灰'不存在'節點'圖片 – Matt
這是我的問題!非常感謝你! – TheOpti