|
|
@ -8,7 +8,7 @@ RUN npm install && mkdir /gifted-subs && cp -r node_modules/ /gifted-subs
|
|
|
|
WORKDIR /gifted-subs
|
|
|
|
WORKDIR /gifted-subs
|
|
|
|
COPY apps/gifted-subs .
|
|
|
|
COPY apps/gifted-subs .
|
|
|
|
|
|
|
|
|
|
|
|
RUN $(npm bin)/ng build --prod --build-optimizer --output-hashing=none
|
|
|
|
RUN $(npm bin)/ng build --target=production --environment=prod --aot --build-optimizer --output-hashing=none
|
|
|
|
|
|
|
|
|
|
|
|
WORKDIR /build-regular-subs
|
|
|
|
WORKDIR /build-regular-subs
|
|
|
|
COPY apps/regular-subs/package.json apps/regular-subs/package-lock.json ./
|
|
|
|
COPY apps/regular-subs/package.json apps/regular-subs/package-lock.json ./
|
|
|
@ -18,7 +18,7 @@ RUN npm install && mkdir /regular-subs && cp -r node_modules/ /regular-subs
|
|
|
|
WORKDIR /regular-subs
|
|
|
|
WORKDIR /regular-subs
|
|
|
|
COPY apps/regular-subs .
|
|
|
|
COPY apps/regular-subs .
|
|
|
|
|
|
|
|
|
|
|
|
RUN $(npm bin)/ng build --prod --build-optimizer --output-hashing=none
|
|
|
|
RUN $(npm bin)/ng build --target=production --environment=prod --aot --build-optimizer --output-hashing=none
|
|
|
|
|
|
|
|
|
|
|
|
WORKDIR /build-quotes
|
|
|
|
WORKDIR /build-quotes
|
|
|
|
COPY apps/quotes/package.json apps/quotes/package-lock.json ./
|
|
|
|
COPY apps/quotes/package.json apps/quotes/package-lock.json ./
|
|
|
@ -28,7 +28,7 @@ RUN npm install && mkdir /quotes && cp -r node_modules/ /quotes
|
|
|
|
WORKDIR /quotes
|
|
|
|
WORKDIR /quotes
|
|
|
|
COPY apps/quotes .
|
|
|
|
COPY apps/quotes .
|
|
|
|
|
|
|
|
|
|
|
|
RUN $(npm bin)/ng build --prod --build-optimizer --output-hashing=none
|
|
|
|
RUN $(npm bin)/ng build --target=production --environment=prod --aot --build-optimizer --output-hashing=none
|
|
|
|
|
|
|
|
|
|
|
|
WORKDIR /build-schedule
|
|
|
|
WORKDIR /build-schedule
|
|
|
|
COPY apps/schedule/package.json apps/schedule/package-lock.json ./
|
|
|
|
COPY apps/schedule/package.json apps/schedule/package-lock.json ./
|
|
|
@ -38,7 +38,7 @@ RUN npm install && mkdir /schedule && cp -r node_modules/ /schedule
|
|
|
|
WORKDIR /schedule
|
|
|
|
WORKDIR /schedule
|
|
|
|
COPY apps/schedule .
|
|
|
|
COPY apps/schedule .
|
|
|
|
|
|
|
|
|
|
|
|
RUN $(npm bin)/ng build --prod --build-optimizer --output-hashing=none
|
|
|
|
RUN $(npm bin)/ng build --target=production --environment=prod --aot --build-optimizer --output-hashing=none
|
|
|
|
|
|
|
|
|
|
|
|
WORKDIR /build-twitch-logs
|
|
|
|
WORKDIR /build-twitch-logs
|
|
|
|
COPY apps/twitch-logs/package.json apps/twitch-logs/package-lock.json ./
|
|
|
|
COPY apps/twitch-logs/package.json apps/twitch-logs/package-lock.json ./
|
|
|
@ -48,7 +48,7 @@ RUN npm install && mkdir /twitch-logs && cp -r node_modules/ /twitch-logs
|
|
|
|
WORKDIR /twitch-logs
|
|
|
|
WORKDIR /twitch-logs
|
|
|
|
COPY apps/twitch-logs .
|
|
|
|
COPY apps/twitch-logs .
|
|
|
|
|
|
|
|
|
|
|
|
RUN $(npm bin)/ng build --prod --build-optimizer --output-hashing=none
|
|
|
|
RUN $(npm bin)/ng build --target=production --environment=prod --aot --build-optimizer --output-hashing=none
|
|
|
|
|
|
|
|
|
|
|
|
FROM nginx:alpine
|
|
|
|
FROM nginx:alpine
|
|
|
|
|
|
|
|
|
|
|
|