Skip to content
This repository was archived by the owner on Dec 30, 2025. It is now read-only.
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 atheme/Containerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# ================================================================================
# Atheme Services - IRC Services Daemon
# ================================================================================
FROM alpine:3.20 AS builder
FROM alpine:3.22 AS builder

# Build dependencies - minimal set for Atheme with SASL SCRAM-SHA support

Expand Down Expand Up @@ -44,7 +44,7 @@ RUN ./configure \
# ================================================================================
# Runtime stage
# ================================================================================
FROM alpine:3.20
FROM alpine:3.22

# Runtime dependencies - minimal set for Atheme operation
# Only include what's actually needed for the configured modules
Expand Down
4 changes: 2 additions & 2 deletions unrealircd/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# ================================================================================

# Build stage
FROM alpine:3.20 AS builder
FROM alpine:3.22 AS builder

# Build arguments
ARG UNREALIRCD_VERSION=6.2.0.1
Expand Down Expand Up @@ -68,7 +68,7 @@ USER root
RUN chown -R root:root /home/unrealircd/unrealircd

# Runtime stage
FROM alpine:3.20
FROM alpine:3.22

# Runtime arguments
ARG UID=0
Expand Down
Loading