chore: update dockerfile

This commit is contained in:
Steven 2023-12-15 21:46:11 +08:00
parent a9812592fe
commit 749187e1e9
3 changed files with 5 additions and 5 deletions

View file

@ -20,7 +20,7 @@ jobs:
version: 8
- uses: actions/setup-node@v4
with:
node-version: "18"
node-version: "20"
cache: pnpm
cache-dependency-path: "web/pnpm-lock.yaml"
- run: pnpm install
@ -40,7 +40,7 @@ jobs:
version: 8
- uses: actions/setup-node@v4
with:
node-version: "18"
node-version: "20"
cache: pnpm
cache-dependency-path: "web/pnpm-lock.yaml"
- run: pnpm install

View file

@ -1,5 +1,5 @@
# Build frontend dist.
FROM node:18-alpine AS frontend
FROM node:20-alpine AS frontend
WORKDIR /frontend-build
COPY . .

View file

@ -15,7 +15,7 @@ services:
- .air/go-build:/root/.cache/go-build
- $HOME/go/pkg/:/go/pkg/ # Cache for go mod shared with the host
web:
image: node:18-alpine
image: node:20-alpine
working_dir: /work
depends_on: ["api"]
ports: ["3001:3001"]
@ -61,7 +61,7 @@ services:
# run npm
npm:
profiles: ["tools"]
image: node:18-alpine
image: node:20-alpine
working_dir: /work
environment: ["NPM_CONFIG_UPDATE_NOTIFIER=false"]
entrypoint: "npm"