forked from shareAI-lab/Kode-Agent
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDockerfile
More file actions
87 lines (64 loc) · 1.93 KB
/
Dockerfile
File metadata and controls
87 lines (64 loc) · 1.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# Build stage
FROM node:22-alpine AS builder
# Configure Alpine to use China mirrors
RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories
# Install build dependencies
RUN apk add --no-cache \
bash \
git \
python3 \
py3-pip \
make \
g++ \
curl
# Configure npm to use China registry
RUN npm config set registry https://registry.npmmirror.com/
# Configure pip to use Tsinghua mirror
RUN pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
# Install bun
RUN curl -fsSL https://bun.sh/install | bash
ENV PATH="/root/.bun/bin:$PATH"
# Set working directory
WORKDIR /app
# Copy package files
COPY package.json ./
# Install pnpm and dependencies
RUN npm install -g pnpm && \
pnpm config set registry https://registry.npmmirror.com/ && \
pnpm install
# Copy source code
COPY . .
# Build the application
RUN pnpm run build
# Verify files exist after build
RUN ls -la /app/
# Runtime stage
FROM node:22-alpine AS runtime
# Configure Alpine to use China mirrors
RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories
# Install only runtime dependencies
RUN apk add --no-cache \
bash \
curl
# Configure npm to use China registry
RUN npm config set registry https://registry.npmmirror.com/
# Install bun
RUN curl -fsSL https://bun.sh/install | bash
ENV PATH="/root/.bun/bin:$PATH"
# Install tsx globally since it's needed at runtime
RUN npm install -g tsx
# Create workspace directory
WORKDIR /workspace
# Copy built application from builder stage
COPY --from=builder /app/cli.js /app/cli.js
COPY --from=builder /app/package.json /app/package.json
COPY --from=builder /app/node_modules /app/node_modules
COPY --from=builder /app/src /app/src
# Create the entrypoint script
RUN cat << 'EOF' > /entrypoint.sh
#!/bin/sh
/root/.bun/bin/bun /app/cli.js -c /workspace "$@"
EOF
RUN chmod +x /entrypoint.sh
# Set the entrypoint
ENTRYPOINT ["/entrypoint.sh"]