From 2d08da8923bad458c38bb200bfb4ddcd4f975454 Mon Sep 17 00:00:00 2001
From: Job79 <job@plabble.org>
Date: Tue, 3 Jun 2025 18:37:58 +0200
Subject: [PATCH] chore(deps): update container images

---
 Containerfile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Containerfile b/Containerfile
index 81fe34c..c9b08a7 100644
--- a/Containerfile
+++ b/Containerfile
@@ -1,11 +1,11 @@
-FROM node:21-alpine3.19 AS frontend-builder
+FROM node:24-alpine3.22 AS frontend-builder
 WORKDIR /build
 
 RUN corepack enable
 COPY pastabble-frontend/ .
 RUN pnpm i && pnpm build
 
-FROM rust:alpine3.19 AS builder
+FROM rust:alpine3.22 AS builder
 WORKDIR /build
 
 RUN apk add --no-cache musl-dev
@@ -18,7 +18,7 @@ RUN case "$(apk --print-arch)" in \
 	       mv ./target/aarch64-unknown-linux-musl /release ;; \
 	esac
 
-FROM alpine:3.19
+FROM alpine:3.22
 WORKDIR /app
 
 RUN mkdir wwwroot data && \