Skip to content

Commit e0bd1e9

Browse files
committed
Upgraded to webpack 5
1 parent 094e89c commit e0bd1e9

File tree

7 files changed

+77643
-3156
lines changed

7 files changed

+77643
-3156
lines changed

.github/workflows/build-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
matrix:
1616
go: [ '1.17']
17-
node-version: [12.x]
17+
node-version: [16.x]
1818

1919
steps:
2020
- uses: actions/checkout@v2

.github/workflows/frontend.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
strategy:
1717
matrix:
18-
node-version: [12.x]
18+
node-version: [16.x]
1919

2020
steps:
2121
- uses: actions/checkout@v2

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,14 @@ ARG DEBIAN_FRONTEND=noninteractive
55

66
RUN apt-get update && apt-get install -y -q --no-install-recommends \
77
ca-certificates \
8+
python \
89
curl \
910
git
1011

1112
SHELL ["/bin/bash", "--login", "-c"]
1213

1314
RUN curl -sL https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash
14-
RUN nvm install v12 && nvm use v12
15+
RUN nvm install v16 && nvm use v16
1516
RUN npm install --global yarn
1617

1718
COPY ./frontend/package.json /src/frontend/

0 commit comments

Comments
 (0)