2021-02-12 10:58:44 -05:00
|
|
|
FROM alpine:latest
|
|
|
|
WORKDIR /usr/src/cre/
|
|
|
|
|
|
|
|
RUN apk update
|
|
|
|
RUN apk add --no-cache nodejs
|
|
|
|
RUN apk add --no-cache npm
|
|
|
|
|
2021-05-01 21:59:16 -04:00
|
|
|
RUN npm install -g typescript@4.0.7
|
|
|
|
RUN npm install -g @angular/cli@11.2.9 || true
|
2021-02-12 10:58:44 -05:00
|
|
|
|
|
|
|
ENV NG_CLI_ANALYTICS=ci
|
|
|
|
|
|
|
|
COPY package.json .
|
|
|
|
|
2021-05-01 22:11:36 -04:00
|
|
|
RUN npm install --force
|
2021-02-12 10:58:44 -05:00
|
|
|
|
|
|
|
COPY . .
|