您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789101112
  1. FROM node:boron-slim
  2. RUN mkdir -p /frontend
  3. WORKDIR /frontend
  4. COPY package.json /frontend/
  5. RUN npm install --production
  6. COPY . /frontend
  7. EXPOSE 8080
  8. CMD [ "npm", "start" ]