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

17 行
255 B

  1. FROM node:boron-slim
  2. MAINTAINER "LessPass <contact@lesspass.com>"
  3. LABEL name="LessPass Frontend"
  4. RUN mkdir -p /frontend
  5. WORKDIR /frontend
  6. COPY package.json /frontend/
  7. RUN npm install --production
  8. COPY . /frontend
  9. EXPOSE 8080
  10. CMD [ "npm", "start" ]