Timers and other features for Heroes of the Storm
Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- FROM node:erbium-alpine as build-stage
- RUN apk add python2
- WORKDIR /app
- COPY package.json yarn.lock ./
- RUN yarn
- COPY . .
- RUN yarn build
-
- FROM nginx:1.17.9-alpine as production-stage
- WORKDIR /usr/share/nginx/html
- COPY --from=build-stage /app/dist .
|