Files
Rafał MiczekandCursor ce66c526b7
continuous-integration/drone Build is running
perf(ci): avoid redundant build in Docker
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-13 22:38:36 +01:00

13 lines
295 B
Docker

# Uses pre-built dist/ from Drone build step (no build in Docker)
FROM oven/bun:1-alpine
WORKDIR /app
COPY dist ./dist
COPY scripts ./scripts
COPY package.json bun.lock* ./
RUN bun install --frozen-lockfile --production
EXPOSE 4000
ENV NODE_ENV=production
CMD ["node", "scripts/serve-ssr.js"]