選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
 

13 行
176 B

  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" ]