-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDockerfile
More file actions
71 lines (58 loc) · 2.3 KB
/
Copy pathDockerfile
File metadata and controls
71 lines (58 loc) · 2.3 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
FROM oven/bun:1 AS base
WORKDIR /app
LABEL org.opencontainers.image.title="OpenCodeHub" \
org.opencontainers.image.description="A modern, self-hosted Git platform with stacked PRs, merge queue, CI/CD, and AI review." \
org.opencontainers.image.url="https://github.com/swadhinbiswas/OpencodeHub" \
org.opencontainers.image.source="https://github.com/swadhinbiswas/OpencodeHub" \
org.opencontainers.image.licenses="MIT"
# Install dependencies
FROM base AS deps
RUN apt-get update && apt-get install -y python3 make g++ gcc libc6-dev && rm -rf /var/lib/apt/lists/*
COPY package.json bun.lock ./
COPY cli/package.json ./cli/package.json
RUN for i in 1 2 3; do \
bun install --frozen-lockfile && break || \
(echo "bun install attempt $i failed, retrying in 10s..." && sleep 10); \
done
# Build the application
FROM base AS builder
COPY --from=deps /app/node_modules ./node_modules
COPY . .
ENV SKIP_REDIS_CHECK=1
RUN bun run build
# Production image
FROM oven/bun:1 AS runner
WORKDIR /app
# Install git, ssh, and bash (needed for git operations and entrypoint)
RUN apt-get update && apt-get install -y git openssh-client bash && rm -rf /var/lib/apt/lists/*
# Create data directories
RUN mkdir -p /data/repos /data/storage /data/cache /data/ssh && \
chown -R bun:bun /data
# Copy built application
COPY --from=builder --chown=bun:bun /app/dist ./dist
COPY --from=builder --chown=bun:bun /app/node_modules ./node_modules
COPY --from=builder --chown=bun:bun /app/package.json ./
# Copy drizzle config and schema for migrations
COPY --from=builder --chown=bun:bun /app/drizzle.config.ts ./
COPY --from=builder --chown=bun:bun /app/src/db ./src/db
COPY --from=builder --chown=bun:bun /app/tsconfig.json ./
# Copy entrypoint script
COPY --chown=bun:bun docker-entrypoint.sh ./
# Set environment variables
ENV HOST=0.0.0.0
ENV PORT=4321
ENV DATA_DIR=/data
ENV REPOS_PATH=/data/repos
ENV STORAGE_PATH=/data/storage
ENV CACHE_PATH=/data/cache
ENV SSH_PATH=/data/ssh
ENV NODE_ENV=production
# Expose ports
EXPOSE 4321
# Switch to non-root user
USER bun
# Health check
HEALTHCHECK --interval=30s --timeout=10s --start-period=15s --retries=3 \
CMD wget --no-verbose --tries=1 --spider http://localhost:4321/api/health || exit 1
# Start the application with entrypoint
ENTRYPOINT ["bash", "./docker-entrypoint.sh"]