Skip to content

Commit

Permalink
Add changeset, update node version in dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
simolus3 committed Feb 6, 2025
1 parent 78e7087 commit 9a9e668
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .changeset/twenty-jeans-marry.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
'@powersync/service-module-postgres-storage': minor
'@powersync/service-core': minor
---

Target Node.JS version 22, ES2024
6 changes: 3 additions & 3 deletions service/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20.12.2 AS builder
FROM node:22.13.1 AS builder
WORKDIR /app

RUN npm i -g pnpm@9
Expand Down Expand Up @@ -54,7 +54,7 @@ RUN pnpm build:production && \

# === TESTER ===

FROM node:20.12.2-slim AS tester
FROM node:22.13.1-slim AS tester
WORKDIR /app


Expand All @@ -69,7 +69,7 @@ CMD pnpm test

# === PROD ===

FROM node:20.12.2-slim
FROM node:22.13.1-slim
WORKDIR /app

COPY --from=builder /app/ ./
Expand Down

0 comments on commit 9a9e668

Please sign in to comment.