Skip to content

Commit

Permalink
Add docker-compose.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
andy5995 committed Nov 20, 2024
1 parent d7944c4 commit e74375f
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions docker/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
version: '3.8'

services:
dev:
image: ghcr.io/KaruroChori/vs-fltk:build-env
container_name: vs-fltk-env
volumes:
- ${PWD}:/workspace
working_dir: /workspace
user: builder
command: >
bash -l -c "
bun install &&
bun run codegen &&
bun run meson-setup.clang-release &&
bun run vs.example
"
stdin_open: true # Allows interactive mode
tty: true # Allocate a pseudo-TTY

0 comments on commit e74375f

Please sign in to comment.