Skip to content

Commit

Permalink
Update node.js version to 19
Browse files Browse the repository at this point in the history
  • Loading branch information
StrandedKitty committed Dec 28, 2023
1 parent b5370df commit 1a26e23
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr-validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: 14
node-version: 19
- name: Install dependencies
run: npm ci
- name: Run linter
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:14 as builder
FROM node:19 as builder

RUN apt-get install -y --no-install-recommends git

Expand All @@ -12,7 +12,7 @@ COPY . .

RUN npm run build

FROM node:14-alpine as runner
FROM node:19-alpine as runner
WORKDIR /usr/src/app

COPY --from=builder /usr/src/builder/build ./build
Expand Down

0 comments on commit 1a26e23

Please sign in to comment.