Timers and other features for Heroes of the Storm
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

8 lines
167 B

  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