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.
 
 
 
 
 

7 satır
117 B

  1. FROM node:erbium-alpine
  2. RUN apk add python2
  3. WORKDIR /app
  4. COPY package.json yarn.lock ./
  5. RUN yarn
  6. ENTRYPOINT yarn dev