fix(Dockerfile): lock node version to 20.5-alpine

This commit is contained in:
kunish 2023-09-06 10:43:57 +08:00
parent 5f0fb23f15
commit c370a84b8c
No known key found for this signature in database
GPG Key ID: 647A12B4F782C430
2 changed files with 4 additions and 3 deletions

View File

@ -2,7 +2,8 @@ name: release
on:
push:
branches: main
branches:
- main
jobs:
release-please:
@ -73,7 +74,7 @@ jobs:
uses: docker/setup-buildx-action@v2
id: buildx
- name: login to ghrc.io
- name: login to ghcr.io
uses: docker/login-action@v2
with:
registry: ghcr.io

View File

@ -1,4 +1,4 @@
FROM docker.io/node:alpine as builder
FROM docker.io/node:20.5-alpine as builder
WORKDIR /build