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.

DockerfileBlame23 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/
13e7ee3Dictation App13COPY drizzle/ ./drizzle/
8ade77bClaude14COPY tsconfig.json drizzle.config.ts ./
15COPY legal/ ./legal/
16COPY CLAUDE.md LICENSE ./
17
18ENV NODE_ENV=production
19ENV PORT=3000
20
21EXPOSE 3000
22
23CMD ["bun", "run", "src/index.ts"]