FROM node:8 EXPOSE 3000 WORKDIR /app COPY package.json index.js ./ RUN npm install CMD ["npm", "start"]. You can build the image with: bash. docker build -t ...
確定! 回上一頁