Timers and other features for Heroes of the Storm
Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
123456789101112 |
- FROM node:erbium-alpine as build-stage
- WORKDIR /app
- COPY package.json .
- RUN yarn
- COPY . .
- RUN yarn build
-
- FROM nginx:1.17.9-alpine as production-stage
- RUN mkdir /app
- COPY --from=build-stage /app/dist /app
- COPY config/docker/nginx.conf /etc/nginx/conf.d/nexus-timers.conf
-
|