mirror of
https://github.com/GenderDysphoria/GenderDysphoria.fyi.git
synced 2025-01-31 07:16:17 +00:00
11 lines
242 B
YAML
11 lines
242 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"]
|