Compare commits

..

2 Commits

Author SHA1 Message Date
dependabot[bot]
c51490f3c0 chore(deps): bump the container-images group across 1 directory with 2 updates
Bumps the container-images group with 2 updates in the / directory: node and golang.


Updates `node` from 24-alpine to 26-alpine

Updates `golang` from 1.25-alpine to 1.27-alpine

---
updated-dependencies:
- dependency-name: node
  dependency-version: 26-alpine
  dependency-type: direct:production
  dependency-group: container-images
- dependency-name: golang
  dependency-version: 1.27-alpine
  dependency-type: direct:production
  dependency-group: container-images
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-08-26 03:50:53 +00:00
Wu Qing
d26dbaf720 Merge pull request #137 from Awuqing/codex/architecture-simplification
refactor: simplify architecture and harden lifecycle
2026-08-26 11:48:33 +08:00

View File

@@ -10,7 +10,7 @@ ARG USE_CHINA_MIRROR=false
# ---- Stage 1: Build frontend ----
FROM node:24-alpine AS web-builder
FROM node:26-alpine AS web-builder
ARG USE_CHINA_MIRROR
# 国内镜像npm 使用淘宝源
@@ -26,7 +26,7 @@ RUN npm run build
# ---- Stage 2: Build backend ----
FROM golang:1.25-alpine AS server-builder
FROM golang:1.27-alpine AS server-builder
ARG USE_CHINA_MIRROR
ARG VERSION=dev