Skip to content
Open
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
2 changes: 1 addition & 1 deletion deploy/compose/docker-compose.e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ services:
- e2e

e2e-db:
image: postgres:13
image: postgres:18
container_name: e2e-db
restart: unless-stopped
environment:
Expand Down
2 changes: 1 addition & 1 deletion deploy/docker/backend/base/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Stage 1: Build Stage
FROM ubuntu:noble AS builder
FROM ubuntu:resolute AS builder
ARG TARGETPLATFORM
ENV DEBIAN_FRONTEND=noninteractive

Expand Down
2 changes: 1 addition & 1 deletion deploy/docker/frontend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-slim as builder
FROM node:24-slim as builder

RUN npm config set fetch-retry-maxtimeout 60000

Expand Down
2 changes: 1 addition & 1 deletion deploy/docker/frontend/Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:22-slim
FROM node:24-slim

RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
Expand Down
2 changes: 1 addition & 1 deletion deploy/docker/unified/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Multi-stage build: First build the frontend
FROM node:20-slim as frontend-builder
FROM node:24-slim as frontend-builder

RUN npm config set fetch-retry-maxtimeout 60000

Expand Down
2 changes: 1 addition & 1 deletion deploy/k8s/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ images:
newTag: 2023w31
- name: postgresql-placeholder
newName: postgres
newTag: "13"
newTag: "18"