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 infra/docker/Dockerfile.bug-server-mock
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Bug Server Mock - Phase 7
FROM node:20-alpine
FROM node:26-alpine

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion infra/docker/Dockerfile.mock-agent
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Mock Agent Server for Testing
FROM node:20-alpine
FROM node:26-alpine

RUN apk add --no-cache wget

Expand Down
4 changes: 2 additions & 2 deletions infra/docker/Dockerfile.production
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# ============================================================
# Stage 1: Build
# ============================================================
FROM node:22-alpine AS builder
FROM node:26-alpine AS builder

WORKDIR /app

Expand All @@ -34,7 +34,7 @@ RUN rm -rf node_modules/.cache \
# ============================================================
# Stage 2: Production
# ============================================================
FROM node:22-alpine AS production
FROM node:26-alpine AS production

# Security: Create non-root user
RUN addgroup -g 1001 -S appgroup \
Expand Down
2 changes: 1 addition & 1 deletion infra/docker/Dockerfile.resource-crawler
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Resource Crawler Service Dockerfile
# Has plugin directory structure

FROM node:20-alpine
FROM node:26-alpine

RUN apk add --no-cache wget

Expand Down
2 changes: 1 addition & 1 deletion infra/docker/Dockerfile.service
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Agenium Search - Service Dockerfile
# Used for dns-crawler, normalizer, indexer, search-api

FROM node:20-alpine
FROM node:26-alpine

# Install wget for healthcheck
RUN apk add --no-cache wget
Expand Down
2 changes: 1 addition & 1 deletion infra/docker/Dockerfile.stub
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Stub service Dockerfile for Phase 2
# All services use this until business logic is implemented

FROM node:22-alpine
FROM node:26-alpine

WORKDIR /app

Expand Down
Loading