我正在尝试构建一个示例泊坞窗图像.当我运行以下命令时:
docker build -t sample .
码头图像在哪里?
这是我的Dockerfile
:
FROM node:boron # Create app directory RUN mkdir -p /usr/src/app WORKDIR /usr/src/app # Install app dependencies COPY package.json /usr/src/app/ RUN npm install # Bundle app source COPY . /usr/src/app EXPOSE 8080 CMD [ "npm", "start" ]
Carlos Rafae.. 17
使用:
docker images
看见了
例:
REPOSITORY TAG IMAGE ID CREATED SIZE sample latest c660b762fcd1 5 days ago 1.46GB
问候
使用:
docker images
看见了
例:
REPOSITORY TAG IMAGE ID CREATED SIZE sample latest c660b762fcd1 5 days ago 1.46GB
问候