forked from github.com/GenderDysphoria.fyi
12 lines
243 B
YAML
12 lines
243 B
YAML
services:
|
|
node_app:
|
|
image: node:18
|
|
platform: linux/amd64
|
|
working_dir: /app
|
|
volumes:
|
|
- ./:/app
|
|
- ./node_modules:/app/node_modules
|
|
- ./dist:/app/dist
|
|
command: ["sh", "-c", "npm install && npm run build"]
|
|
|