Files
incAgent/agent/Dockerfile
2026-01-15 18:41:01 +11:00

15 lines
222 B
Docker

FROM oven/bun:latest
WORKDIR /app
# Copy package files
COPY package.json bun.lockb* ./
# Install dependencies
RUN bun install
# Expose port
EXPOSE 3000
# Command will be overridden by docker-compose
CMD ["bun", "dev"]