Files
homeassistant-mcp/Dockerfile
jango-blockchained 54112c9059 chore: manage bun.lockb in Docker and project configuration
- Update .dockerignore to exclude bun.lockb
- Modify .gitignore to track bun.lockb
- Update Dockerfile to remove bun.lockb copy step
- Add bun.lockb binary lockfile to the repository
2025-02-04 15:08:15 +01:00

23 lines
317 B
Docker

# Use Bun as the base image
FROM oven/bun:1.0.25
# Set working directory
WORKDIR /app
# Copy package files
COPY package.json ./
# Install dependencies
RUN bun install
# Copy source code
COPY . .
# Build TypeScript
RUN bun run build
# Expose port
EXPOSE 4000
# Start the application
CMD ["bun", "run", "start"]