Timers and other features for Heroes of the Storm
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

Dockerfile 167 B

4 yıl önce
1234567
  1. FROM node:erbium-alpine
  2. RUN apk add python2
  3. USER node
  4. WORKDIR /home/node
  5. COPY --chown=node:node package.json yarn.lock ./
  6. RUN yarn
  7. ENTRYPOINT node build/dev-server.js