Skip to content

Commit

Permalink
fix(Dockerfile): lock node version to 20.5-alpine
Browse files Browse the repository at this point in the history
  • Loading branch information
kunish committed Sep 6, 2023
1 parent 5f0fb23 commit c370a84
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ name: release

on:
push:
branches: main
branches:
- main

jobs:
release-please:
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/node:alpine as builder
FROM docker.io/node:20.5-alpine as builder

WORKDIR /build

Expand Down

0 comments on commit c370a84

Please sign in to comment.