Pre-launch — Gluecron is in final validation. Public signups and git hosting for non-owner users open after launch review.
CodeIssuesDiscussionsWikiPull RequestsProjectsCommitsActionsReleasesContributorsPulse● GatesSecuritySettingsDeploymentsPipelineInsightsAgents✨ Explain✨ Ask AI✨ Workspace✨ Spec✨ Tests▓ Debt Map✨ NL Search🏛 Archaeology
Blame · Line-by-line history

Dockerfile

Each line is annotated with the commit that last touched it. Click any SHA to jump to that commit and see the surrounding change.

DockerfileBlame31 lines · 3 contributors
8ade77bClaude1FROM oven/bun:1.3 AS base
2WORKDIR /app
3
4# Install git (required for git operations)
5RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
6
7# Install dependencies
8COPY package.json bun.lock ./
9RUN bun install --frozen-lockfile --production
10
11# Copy source
12COPY src/ ./src/
50c42feanthropic-code-agent[bot]13COPY drizzle/ ./drizzle/
8ade77bClaude14COPY tsconfig.json drizzle.config.ts ./
15COPY legal/ ./legal/
16COPY CLAUDE.md LICENSE ./
17
18# Create repos directory
19RUN mkdir -p /data/repos
20
21ENV GIT_REPOS_PATH=/data/repos
22ENV NODE_ENV=production
23ENV PORT=3000
24
25EXPOSE 3000
26
2c3ba6ecopilot-swe-agent[bot]27# Run as non-root user for security
28RUN chown -R bun:bun /app /data/repos
29USER bun
30
8ade77bClaude31CMD ["bun", "run", "src/index.ts"]