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.

DockerfileBlame30 lines · 2 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/
13COPY tsconfig.json drizzle.config.ts ./
14COPY legal/ ./legal/
15COPY CLAUDE.md LICENSE ./
16
17# Create repos directory
18RUN mkdir -p /data/repos
19
20ENV GIT_REPOS_PATH=/data/repos
21ENV NODE_ENV=production
22ENV PORT=3000
23
24EXPOSE 3000
25
2c3ba6ecopilot-swe-agent[bot]26# Run as non-root user for security
27RUN chown -R bun:bun /app /data/repos
28USER bun
29
8ade77bClaude30CMD ["bun", "run", "src/index.ts"]