Files
kin/server/Dockerfile
Marcus Rehbock ac0b82e6a0
Some checks failed
Build & Release APK / build (push) Failing after 13s
Kin: personal relationships app — server (cadence/due/migrations) + Expo Android app
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-08-09 00:50:06 -07:00

17 lines
250 B
Docker

FROM oven/bun:1-alpine
WORKDIR /app
# Install deps first for better layer caching.
COPY package.json ./
RUN bun install
# App source
COPY src ./src
COPY migrations ./migrations
COPY public ./public
EXPOSE 3000
CMD ["bun", "run", "src/index.ts"]