@ -4,7 +4,7 @@ WORKDIR /app
# Install dependencies first (better layer caching)
COPY package.json bun.lock ./
RUN bun install --production
RUN bun install
# Copy only necessary files
COPY src/ ./src/
@ -12,7 +12,7 @@ COPY index.ts ./
# Health check
HEALTHCHECK --interval=30s --timeout=3s \
CMD curl -f http://localhost:3007/health || exit 1
# Server runs on port 3007 by default
EXPOSE 3007