Skip to content

Commit

Permalink
docker: update to node 22
Browse files Browse the repository at this point in the history
  • Loading branch information
ns212 committed Feb 15, 2025
1 parent 2f3af70 commit f32668b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/library/node:18-slim AS node
FROM docker.io/library/node:22-slim AS node

FROM node AS node-with-gyp
RUN apt update -y && apt install -y g++ make python3 tini
Expand Down
10 changes: 5 additions & 5 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3.4"

services:
db-kintsugi:
image: postgres:12
image: postgres:17
restart: always
ports:
- "127.0.0.1:5434:5432"
Expand All @@ -14,7 +14,7 @@ services:
POSTGRES_DB: ${DB_NAME}

db-interlay:
image: postgres:12
image: postgres:17
restart: always
ports:
- "127.0.0.1:5435:5432"
Expand All @@ -26,7 +26,7 @@ services:
POSTGRES_DB: ${DB_NAME}

db-kintsugi-testnet:
image: postgres:12
image: postgres:17
restart: always
ports:
- "127.0.0.1:5433:5432"
Expand All @@ -38,7 +38,7 @@ services:
POSTGRES_DB: ${DB_NAME}

db-interlay-testnet:
image: postgres:12
image: postgres:17
restart: always
ports:
- "127.0.0.1:5436:5432"
Expand All @@ -50,7 +50,7 @@ services:
POSTGRES_DB: ${DB_NAME}

db:
image: postgres:12
image: postgres:17
restart: always
ports:
- "127.0.0.1:5433:5432"
Expand Down

0 comments on commit f32668b

Please sign in to comment.