File tree Expand file tree Collapse file tree 5 files changed +18144
-13313
lines changed Expand file tree Collapse file tree 5 files changed +18144
-13313
lines changed Original file line number Diff line number Diff line change 1919
20202121 with :
22- node-version : 10
22+ node-version : 14
2323 cache : ' npm'
2424
25+ - name : Update npm
26+ run : npm install -g npm@9
27+
2528 - name : Install dependencies
2629 run : npm ci
2730
Original file line number Diff line number Diff line change 11# Copyright (c) Microsoft Corporation and others. Licensed under the MIT license.
22# SPDX-License-Identifier: MIT
3- FROM node:10 -alpine as builder
3+ FROM node:14 -alpine as builder
44COPY . /opt/website
55WORKDIR /opt/website
66ARG REACT_APP_SERVER=http://localhost:4000
77ARG REACT_APP_GA_TRACKINGID
88RUN apk add --no-cache git
9+ RUN npm install -g npm@9
910RUN npm install
1011
1112EXPOSE 3000
Original file line number Diff line number Diff line change 11# Copyright (c) Microsoft Corporation and others. Licensed under the MIT license.
22# SPDX-License-Identifier: MIT
3- FROM node:10 -alpine as builder
3+ FROM node:14 -alpine as builder
44COPY . /opt/website
55WORKDIR /opt/website
66ARG REACT_APP_SERVER=http://localhost:4000
77ARG REACT_APP_GA_TRACKINGID
88RUN apk add --no-cache git
9+ RUN npm install -g npm@9
910RUN npm install
1011RUN npm run build
1112
You can’t perform that action at this time.
0 commit comments