File tree 5 files changed +18144
-13313
lines changed 5 files changed +18144
-13313
lines changed Original file line number Diff line number Diff line change 19
19
20
20
- uses : actions/setup-node@v4.0.1
21
21
with :
22
- node-version : 10
22
+ node-version : 14
23
23
cache : ' npm'
24
24
25
+ - name : Update npm
26
+ run : npm install -g npm@9
27
+
25
28
- name : Install dependencies
26
29
run : npm ci
27
30
Original file line number Diff line number Diff line change 1
1
# Copyright (c) Microsoft Corporation and others. Licensed under the MIT license.
2
2
# SPDX-License-Identifier: MIT
3
- FROM node:10 -alpine as builder
3
+ FROM node:14 -alpine as builder
4
4
COPY . /opt/website
5
5
WORKDIR /opt/website
6
6
ARG REACT_APP_SERVER=http://localhost:4000
7
7
ARG REACT_APP_GA_TRACKINGID
8
8
RUN apk add --no-cache git
9
+ RUN npm install -g npm@9
9
10
RUN npm install
10
11
11
12
EXPOSE 3000
Original file line number Diff line number Diff line change 1
1
# Copyright (c) Microsoft Corporation and others. Licensed under the MIT license.
2
2
# SPDX-License-Identifier: MIT
3
- FROM node:10 -alpine as builder
3
+ FROM node:14 -alpine as builder
4
4
COPY . /opt/website
5
5
WORKDIR /opt/website
6
6
ARG REACT_APP_SERVER=http://localhost:4000
7
7
ARG REACT_APP_GA_TRACKINGID
8
8
RUN apk add --no-cache git
9
+ RUN npm install -g npm@9
9
10
RUN npm install
10
11
RUN npm run build
11
12
You can’t perform that action at this time.
0 commit comments