We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8c0ff7 commit 8bb6708Copy full SHA for 8bb6708
2 files changed
.github/workflows/publish-to-gh-pages.yml
@@ -28,7 +28,7 @@ jobs:
28
- name: Setup Node.js
29
uses: actions/setup-node@v4
30
with:
31
- node-version: '18'
+ node-version: '20'
32
cache: 'npm'
33
34
- name: Install dependencies
Dockerfile
@@ -1,8 +1,11 @@
1
# Build stage
2
-from node:18-alpine as build
+from node:20-alpine as build
3
4
workdir /app
5
6
+# Update npm to latest version
7
+run npm install -g npm@latest
8
+
9
# Copy package files
10
copy package*.json ./
11
0 commit comments