更新了dockerfile
This commit is contained in:
44
Dockerfile
44
Dockerfile
@@ -1,37 +1,35 @@
|
|||||||
# ------------- 依赖缓存阶段 -------------
|
|
||||||
FROM node:22.16-alpine AS base
|
|
||||||
|
|
||||||
# 国内镜像
|
|
||||||
RUN npm config set registry https://registry.npmmirror.com
|
|
||||||
|
|
||||||
# 置顶安装 pnpm@10.13.1
|
|
||||||
RUN npm install -g pnpm@10.13.1
|
|
||||||
|
|
||||||
|
FROM node:22-alpine AS build
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
# 1️⃣ 先把锁文件拷进来,让这一层可以 cache
|
RUN npm config set registry https://registry.npmmirror.com
|
||||||
|
RUN corepack enable
|
||||||
|
|
||||||
|
# Copy package.json and your lockfile, here we add pnpm-lock.yaml for illustration
|
||||||
COPY package.json pnpm-lock.yaml .npmrc ./
|
COPY package.json pnpm-lock.yaml .npmrc ./
|
||||||
|
|
||||||
# 2️⃣ 再执行安装
|
# Install dependencies
|
||||||
RUN pnpm install --frozen-lockfile
|
RUN pnpm i
|
||||||
|
|
||||||
# 3️⃣ 再拷剩余源码
|
# Copy the entire project
|
||||||
COPY . .
|
COPY . ./
|
||||||
|
|
||||||
|
# Build the project
|
||||||
RUN chmod +x patch-ui-pro.zsh && ./patch-ui-pro.zsh
|
RUN chmod +x patch-ui-pro.zsh && ./patch-ui-pro.zsh
|
||||||
|
RUN pnpm run build
|
||||||
|
|
||||||
# ------------- 构建阶段 -------------
|
# Build Stage 2
|
||||||
FROM base AS builder
|
|
||||||
RUN pnpm build
|
|
||||||
|
|
||||||
# ------------- 运行阶段 -------------
|
|
||||||
FROM node:22.16-alpine AS production
|
|
||||||
|
|
||||||
|
FROM node:22-alpine
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
# 拷贝构建产物
|
# Only `.output` folder is needed from the build stage
|
||||||
COPY --from=builder /app/.output ./.output
|
COPY --from=build /app/.output/ ./
|
||||||
|
|
||||||
|
# Change the port and host
|
||||||
|
ENV PORT=3000
|
||||||
|
ENV HOST=0.0.0.0
|
||||||
|
|
||||||
EXPOSE 3000
|
EXPOSE 3000
|
||||||
ENV NODE_ENV=production HOST=0.0.0.0 PORT=3000
|
|
||||||
CMD ["node", ".output/server/index.mjs"]
|
|
||||||
|
|
||||||
|
CMD ["node", "/app/server/index.mjs"]
|
@@ -3,25 +3,25 @@ const providers = ref([
|
|||||||
{
|
{
|
||||||
label: 'Google',
|
label: 'Google',
|
||||||
icon: 'simple-icons-google',
|
icon: 'simple-icons-google',
|
||||||
color: 'neutral',
|
color: 'neutral' as const,
|
||||||
variant: 'subtle'
|
variant: 'subtle' as const
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'GitHub',
|
label: 'GitHub',
|
||||||
icon: 'simple-icons-github',
|
icon: 'simple-icons-github',
|
||||||
color: 'neutral',
|
color: 'neutral' as const,
|
||||||
variant: 'subtle'
|
variant: 'subtle' as const
|
||||||
}
|
}
|
||||||
])
|
])
|
||||||
const fields = ref([
|
const fields = ref([
|
||||||
{
|
{
|
||||||
name: 'email',
|
name: 'email',
|
||||||
type: 'text',
|
type: 'text' as const,
|
||||||
label: 'Email'
|
label: 'Email'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'password',
|
name: 'password',
|
||||||
type: 'password',
|
type: 'password' as const,
|
||||||
label: 'Password'
|
label: 'Password'
|
||||||
}
|
}
|
||||||
])
|
])
|
||||||
|
@@ -3,25 +3,25 @@ const providers = ref([
|
|||||||
{
|
{
|
||||||
label: 'Google',
|
label: 'Google',
|
||||||
icon: 'simple-icons-google',
|
icon: 'simple-icons-google',
|
||||||
color: 'neutral',
|
color: 'neutral' as const,
|
||||||
variant: 'subtle'
|
variant: 'subtle' as const
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'GitHub',
|
label: 'GitHub',
|
||||||
icon: 'simple-icons-github',
|
icon: 'simple-icons-github',
|
||||||
color: 'neutral',
|
color: 'neutral' as const,
|
||||||
variant: 'subtle'
|
variant: 'subtle' as const
|
||||||
}
|
}
|
||||||
])
|
])
|
||||||
const fields = ref([
|
const fields = ref([
|
||||||
{
|
{
|
||||||
name: 'email',
|
name: 'email',
|
||||||
type: 'text',
|
type: 'text' as const,
|
||||||
label: 'Email'
|
label: 'Email'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'password',
|
name: 'password',
|
||||||
type: 'password',
|
type: 'password' as const,
|
||||||
label: 'Password'
|
label: 'Password'
|
||||||
}
|
}
|
||||||
])
|
])
|
||||||
|
Reference in New Issue
Block a user