Skip to content
Snippets Groups Projects
Commit f83ac265 authored by Xiao Gui's avatar Xiao Gui
Browse files

fix docker file for CD

parent 7d9a8ae6
No related branches found
No related tags found
No related merge requests found
FROM node:10 as builder
FROM node:12 as builder
ARG BACKEND_URL
ENV BACKEND_URL=${BACKEND_URL}
......@@ -19,7 +19,7 @@ RUN npm i
RUN npm run build-aot
# gzipping container
FROM ubuntu:18.10 as compressor
FROM ubuntu:19.10 as compressor
RUN apt upgrade -y && apt update && apt install brotli
RUN mkdir /iv
......@@ -29,7 +29,7 @@ WORKDIR /iv
RUN for f in $(find . -type f); do gzip < $f > $f.gz && brotli < $f > $f.br; done
# prod container
FROM node:10-alpine
FROM node:12-alpine
ENV NODE_ENV=production
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment