[AC-AISVC-50] 合入第一个稳定版本 #2

Merged
MerCry merged 32 commits from feature/prompt-unification-and-logging into main 2026-02-26 13:03:31 +00:00
2 changed files with 4 additions and 4 deletions
Showing only changes of commit 366f38e17f - Show all commits

View File

@ -1,5 +1,5 @@
# AI Service Admin Frontend Dockerfile
FROM node:20-alpine AS builder
FROM docker.1ms.run/node:20-alpine AS builder
WORKDIR /app
@ -11,7 +11,7 @@ COPY . .
RUN npm run build
FROM nginx:alpine
FROM docker.1ms.run/nginx:alpine
COPY --from=builder /app/dist /usr/share/nginx/html

View File

@ -1,5 +1,5 @@
# AI Service Backend Dockerfile
FROM python:3.11-slim AS builder
FROM docker.1ms.run/python:3.11-slim AS builder
WORKDIR /app
@ -9,7 +9,7 @@ COPY pyproject.toml .
RUN uv pip install --system --no-cache-dir .
FROM python:3.11-slim
FROM docker.1ms.run/python:3.11-slim
WORKDIR /app