forked from openclaw/openclaw
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile.secure
More file actions
65 lines (47 loc) · 1.74 KB
/
Dockerfile.secure
File metadata and controls
65 lines (47 loc) · 1.74 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
# ============================================
# CLAWD SECURE - ROOTLESS DOCKERFILE
# Directive 2: Rootless Docker Execution
# ============================================
# Stage 1: Build
FROM node:22-alpine AS builder
WORKDIR /app
# Copy package files
COPY package.json pnpm-lock.yaml pnpm-workspace.yaml ./
COPY patches ./patches
# Install dependencies
RUN corepack enable pnpm && pnpm install --frozen-lockfile
# Copy source code
COPY . .
# Build the application
RUN pnpm build
# ============================================
# Stage 2: Production Runtime
# ============================================
FROM node:22-alpine AS runner
WORKDIR /app
# Create non-root user (UID 1001)
RUN addgroup -g 1001 -S clawdgroup && \
adduser -u 1001 -S clawduser -G clawdgroup
# Copy built artifacts from builder
COPY --from=builder --chown=clawduser:clawdgroup /app/dist ./dist
COPY --from=builder --chown=clawduser:clawdgroup /app/node_modules ./node_modules
COPY --from=builder --chown=clawduser:clawdgroup /app/package.json ./package.json
# Copy runtime dependencies
COPY --chown=clawduser:clawdgroup scripts ./scripts
COPY --chown=clawduser:clawdgroup skills ./skills
COPY --chown=clawduser:clawdgroup extensions ./extensions
# Create data directories
RUN mkdir -p /app/data /app/data/audit-logs && \
chown -R clawduser:clawdgroup /app/data
# Switch to non-root user
USER clawduser
# Environment
ENV NODE_ENV=production
ENV PORT=3000
# Expose port (binds to 127.0.0.1 in docker-compose)
EXPOSE 3000
# Health check
HEALTHCHECK --interval=30s --timeout=10s --start-period=40s --retries=3 \
CMD node -e "require('http').get('http://localhost:3000/health', (r) => process.exit(r.statusCode === 200 ? 0 : 1))"
# Start application
CMD ["node", "dist/index.js"]