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
4 changes: 2 additions & 2 deletions docker/Dockerfile.admin
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# ASSETFLOW AI - Admin Dashboard
# ============================================

FROM node:18-alpine AS builder
FROM node:26-alpine AS builder

# Set working directory
WORKDIR /app
Expand Down Expand Up @@ -33,7 +33,7 @@ RUN npm run build --workspace=@assetflow/admin
# Production Image
# ============================================

FROM node:18-alpine AS runner
FROM node:26-alpine AS runner

WORKDIR /app

Expand Down
4 changes: 2 additions & 2 deletions docker/Dockerfile.api
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# ASSETFLOW AI - Backend API
# ============================================

FROM node:18-alpine AS builder
FROM node:26-alpine AS builder

# Set working directory
WORKDIR /app
Expand Down Expand Up @@ -36,7 +36,7 @@ RUN npm run build --workspace=@assetflow/api
# Production Image
# ============================================

FROM node:18-alpine AS runner
FROM node:26-alpine AS runner

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.hardhat
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# ASSETFLOW AI - Hardhat Blockchain Node
# ============================================

FROM node:18-alpine
FROM node:26-alpine

# Set working directory
WORKDIR /app
Expand Down
4 changes: 2 additions & 2 deletions docker/Dockerfile.web
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# ASSETFLOW AI - Web Application
# ============================================

FROM node:18-alpine AS builder
FROM node:26-alpine AS builder

# Set working directory
WORKDIR /app
Expand Down Expand Up @@ -35,7 +35,7 @@ RUN npm run build --workspace=@assetflow/web
# Production Image
# ============================================

FROM node:18-alpine AS runner
FROM node:26-alpine AS runner

WORKDIR /app

Expand Down
Loading