19 lines
355 B
YAML
19 lines
355 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
app:
|
|
image: node:22
|
|
working_dir: /app
|
|
volumes:
|
|
- .:/app
|
|
restart: always
|
|
ports:
|
|
- "6756:6756"
|
|
command: >
|
|
sh -c "
|
|
npm i -g pnpm &&
|
|
pnpm install &&
|
|
pnpm build &&
|
|
if ! command -v serve >/dev/null 2>&1; then npm i -g serve; fi &&
|
|
npx serve -l 6756 dist
|
|
" |