refactor: simplify Dockerfile for development and add docker-compose

- Simplify Dockerfile to single-stage development setup
- Add docker-compose.yml for easier container management

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
User
2026-01-09 01:56:46 +00:00
parent 026e33a08a
commit 2baa8fb143
2 changed files with 17 additions and 23 deletions

7
docker-compose.yml Normal file
View File

@@ -0,0 +1,7 @@
services:
app:
build: .
container_name: copilot-toolbox-dev
restart: unless-stopped
expose:
- "3000"