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

12345678
  1. FROM node:fermium-alpine
  2. RUN apk add python2 make g++
  3. WORKDIR /home/node
  4. COPY package.json yarn.lock ./
  5. RUN chown node:node -R .
  6. USER node
  7. RUN yarn
  8. ENTRYPOINT node build/dev-server.js