Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions backend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build
FROM node:22.21.1-slim AS build
FROM node:24.11.1-slim AS build

# Copy, build static files; see .dockerignore for exclusions
WORKDIR /app
Expand All @@ -8,7 +8,7 @@ ENV PRISMA_CLI_BINARY_TARGETS=debian-openssl-3.0.x
RUN npm run deploy

# Dependencies
FROM node:22.21.1-slim AS dependencies
FROM node:24.11.1-slim AS dependencies

# Copy, build static files; see .dockerignore for exclusions
WORKDIR /app
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ x-postgres-vars: &postgres-vars

services:
database:
image: postgis/postgis:16-3.4 # if using crunchy , make sure to align with crunchy version, currently it is at 16 and postgis 3.3
image: postgis/postgis:17-3.4 # if using crunchy , make sure to align with crunchy version, currently it is at 16 and postgis 3.3
container_name: database
environment:
<<: *postgres-vars
Expand All @@ -38,7 +38,7 @@ services:
condition: service_healthy

schemaspy:
image: schemaspy/schemaspy:6.2.4
image: schemaspy/schemaspy:7.0.2
profiles: ["schemaspy"]
container_name: schemaspy
command: -t pgsql11 -db postgres -host database -port 5432 -u postgres -p default -schemas users
Expand Down
2 changes: 1 addition & 1 deletion frontend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build
FROM node:22-slim AS build
FROM node:24-slim AS build

# Copy, build static files; see .dockerignore for exclusions
WORKDIR /app
Expand Down
Loading