fix
This commit is contained in:
parent
e0f604ea31
commit
a7372a19a9
1
.env.example
Normal file
1
.env.example
Normal file
@ -0,0 +1 @@
|
|||||||
|
NEXT_PUBLIC_BASE_URL=https://u.mei.lv
|
64
Dockerfile
64
Dockerfile
@ -1,79 +1,35 @@
|
|||||||
# 阶段 1: 依赖项安装和构建
|
# Stage 1: Install dependencies
|
||||||
FROM node:18-alpine AS builder
|
FROM node:18-alpine AS builder
|
||||||
|
|
||||||
# 设置工作目录
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
# 创建 sources.list 文件并设置为清华源
|
|
||||||
RUN echo "https://mirrors.tuna.tsinghua.edu.cn/alpine/v3.17/main" > /etc/apk/repositories && \
|
RUN echo "https://mirrors.tuna.tsinghua.edu.cn/alpine/v3.17/main" > /etc/apk/repositories && \
|
||||||
echo "https://mirrors.tuna.tsinghua.edu.cn/alpine/v3.17/community" >> /etc/apk/repositories
|
echo "https://mirrors.tuna.tsinghua.edu.cn/alpine/v3.17/community" >> /etc/apk/repositories
|
||||||
|
|
||||||
# 更新 apk 缓存
|
|
||||||
RUN apk update
|
RUN apk update
|
||||||
|
|
||||||
# 设置 npm 使用清华大学开源软件镜像站
|
|
||||||
RUN npm config set registry https://registry.npmmirror.com
|
RUN npm config set registry https://registry.npmmirror.com
|
||||||
|
|
||||||
# 复制 package.json 和 package-lock.json (如果可用)
|
|
||||||
COPY package*.json ./
|
COPY package*.json ./
|
||||||
|
|
||||||
# 安装依赖项
|
|
||||||
RUN npm ci
|
RUN npm ci
|
||||||
|
|
||||||
# 复制项目文件
|
# Stage 2: Build the applicatio
|
||||||
COPY . .
|
COPY . .
|
||||||
|
|
||||||
# 构建应用前,先安装必要的系统依赖
|
|
||||||
RUN apk add --no-cache build-base python3 g++ make
|
RUN apk add --no-cache build-base python3 g++ make
|
||||||
|
|
||||||
# 重新构建 better-sqlite3 模块
|
|
||||||
RUN npm rebuild better-sqlite3 --update-binary
|
RUN npm rebuild better-sqlite3 --update-binary
|
||||||
|
RUN mkdir -p /app/data
|
||||||
# 构建 Next.js 应用
|
|
||||||
RUN npm run build
|
RUN npm run build
|
||||||
|
|
||||||
# 阶段 2: 生产环境
|
# Stage 3: Production image
|
||||||
FROM node:18-alpine AS runner
|
FROM node:18-alpine AS runner
|
||||||
|
RUN mkdir -p /app/data && chmod 755 /app/data
|
||||||
# 设置工作目录
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
# 创建 sources.list 文件并设置为清华源
|
|
||||||
RUN echo "https://mirrors.tuna.tsinghua.edu.cn/alpine/v3.17/main" > /etc/apk/repositories && \
|
RUN echo "https://mirrors.tuna.tsinghua.edu.cn/alpine/v3.17/main" > /etc/apk/repositories && \
|
||||||
echo "https://mirrors.tuna.tsinghua.edu.cn/alpine/v3.17/community" >> /etc/apk/repositories
|
echo "https://mirrors.tuna.tsinghua.edu.cn/alpine/v3.17/community" >> /etc/apk/repositories
|
||||||
|
|
||||||
# 更新 apk 缓存
|
|
||||||
RUN apk update
|
RUN apk update
|
||||||
|
ENV NODE_ENV Production
|
||||||
# 设置为生产环境
|
|
||||||
ENV NODE_ENV production
|
|
||||||
|
|
||||||
# 添加一个非root用户来运行应用
|
|
||||||
RUN addgroup --system --gid 1001 nodejs
|
|
||||||
RUN adduser --system --uid 1001 nextjs
|
|
||||||
|
|
||||||
# 复制构建的应用和依赖项
|
|
||||||
COPY --from=builder /app/next.config.js ./
|
COPY --from=builder /app/next.config.js ./
|
||||||
COPY --from=builder /app/.next/standalone ./
|
COPY --from=builder /app/.next/standalone ./
|
||||||
COPY --from=builder /app/start.sh ./
|
|
||||||
COPY --from=builder /app/.next/static ./.next/static
|
COPY --from=builder /app/.next/static ./.next/static
|
||||||
|
COPY --from=builder /app/node_modules ./node_modules
|
||||||
# 设置正确的权限
|
COPY --from=builder /app/package*.json ./
|
||||||
RUN chown -R nextjs:nodejs /app
|
COPY --from=builder /app/data/shorturl.db ./data
|
||||||
RUN chmod +x /app/start.sh
|
|
||||||
|
|
||||||
# 切换到非root用户
|
|
||||||
USER nextjs
|
|
||||||
|
|
||||||
# 声明数据卷
|
|
||||||
VOLUME /app/data
|
VOLUME /app/data
|
||||||
|
|
||||||
# 暴露应用端口
|
|
||||||
EXPOSE 3000
|
|
||||||
|
|
||||||
# 设置环境变量
|
|
||||||
ENV PORT 3000
|
|
||||||
ENV HOSTNAME "0.0.0.0"
|
|
||||||
|
|
||||||
# 运行应用
|
# 运行应用
|
||||||
CMD ["/app/start.sh"]
|
CMD ["node", "server.js"]
|
10
docker-compose.yaml
Normal file
10
docker-compose.yaml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
version: "3"
|
||||||
|
services:
|
||||||
|
url-shortener:
|
||||||
|
container_name: url-shortener
|
||||||
|
image: url-shortener:v0.0.20
|
||||||
|
restart: always
|
||||||
|
volumes:
|
||||||
|
- ./data:/app/data
|
||||||
|
ports:
|
||||||
|
- "8567:3000"
|
@ -1,10 +1,8 @@
|
|||||||
import Database from 'better-sqlite3';
|
import Database from 'better-sqlite3';
|
||||||
import { nanoid } from 'nanoid';
|
import { nanoid } from 'nanoid';
|
||||||
import fs from 'fs';
|
|
||||||
import path from 'path';
|
import path from 'path';
|
||||||
|
|
||||||
const dataDir = process.env.NODE_ENV === 'production' ? '/app/data' : path.join(process.cwd(), 'data');
|
const dataDir = 'data'
|
||||||
fs.mkdirSync(dataDir, { recursive: true });
|
|
||||||
|
|
||||||
const dbPath = path.join(dataDir, 'shorturl.db');
|
const dbPath = path.join(dataDir, 'shorturl.db');
|
||||||
const db = new Database(dbPath);
|
const db = new Database(dbPath);
|
||||||
|
@ -1,6 +0,0 @@
|
|||||||
import getConfig from 'next/config'
|
|
||||||
|
|
||||||
const { publicRuntimeConfig } = getConfig()
|
|
||||||
|
|
||||||
export const BASE_URL = publicRuntimeConfig.NEXT_PUBLIC_BASE_URL || 'http://localhost:3000'
|
|
||||||
|
|
@ -1,17 +1,8 @@
|
|||||||
/** @type {import('next').NextConfig} */
|
/** @type {import('next').NextConfig} */
|
||||||
const nextConfig = {
|
const nextConfig = {
|
||||||
output: 'standalone',
|
output: 'standalone',
|
||||||
// 启用运行时配置
|
|
||||||
serverRuntimeConfig: {
|
|
||||||
// 将在服务器端可用
|
|
||||||
NEXT_PUBLIC_BASE_URL: process.env.NEXT_PUBLIC_BASE_URL,
|
|
||||||
},
|
|
||||||
publicRuntimeConfig: {
|
|
||||||
// 将在客户端和服务器端可用
|
|
||||||
NEXT_PUBLIC_BASE_URL: process.env.NEXT_PUBLIC_BASE_URL,
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = nextConfig
|
module.exports = nextConfig
|
||||||
|
|
||||||
|
|
4
package-lock.json
generated
4
package-lock.json
generated
@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "short-url",
|
"name": "short-url",
|
||||||
"version": "0.1.0",
|
"version": "0.1.13",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "short-url",
|
"name": "short-url",
|
||||||
"version": "0.1.0",
|
"version": "0.1.13",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@radix-ui/react-progress": "^1.1.0",
|
"@radix-ui/react-progress": "^1.1.0",
|
||||||
"better-sqlite3": "^11.6.0",
|
"better-sqlite3": "^11.6.0",
|
||||||
|
Loading…
Reference in New Issue
Block a user