Timers and other features for Heroes of the Storm
選択できるのは25トピックまでです。
トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
|
- FROM node:erbium-alpine
- RUN apk add python2
- WORKDIR /home/node
- COPY package.json yarn.lock ./
- RUN chown node:node -R .
- USER node
- RUN yarn
- ENTRYPOINT node build/dev-server.js
|