mirror of
https://github.com/upstash/context7.git
synced 2025-11-30 09:00:13 +00:00
32 lines
694 B
Docker
32 lines
694 B
Docker
|
|
# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile
|
||
|
|
# ----- Build Stage -----
|
||
|
|
FROM node:lts-alpine AS builder
|
||
|
|
WORKDIR /app
|
||
|
|
|
||
|
|
# Copy package and configuration
|
||
|
|
COPY package.json bun.lock tsconfig.json ./
|
||
|
|
|
||
|
|
# Copy source code
|
||
|
|
COPY src ./src
|
||
|
|
|
||
|
|
# Install dependencies and build
|
||
|
|
RUN npm install && npm run build
|
||
|
|
|
||
|
|
# ----- Production Stage -----
|
||
|
|
FROM node:lts-alpine
|
||
|
|
WORKDIR /app
|
||
|
|
|
||
|
|
# Copy built artifacts
|
||
|
|
COPY --from=builder /app/dist ./dist
|
||
|
|
|
||
|
|
# Copy package.json for production install
|
||
|
|
COPY package.json ./
|
||
|
|
|
||
|
|
# Install only production dependencies
|
||
|
|
RUN npm install --production --ignore-scripts
|
||
|
|
|
||
|
|
# Expose no ports (stdio only)
|
||
|
|
|
||
|
|
# Default command
|
||
|
|
CMD ["node", "dist/index.js"]
|