選択できるのは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" ]