mirror of
https://github.com/opentofu/opentofu.org.git
synced 2026-01-11 19:56:26 +00:00
This commit adds a build container to make it easier for people without NodeJS/npm to run the website locally. Signed-off-by: Janos Bonic <86970079+janosdebugs@users.noreply.github.com>
11 lines
191 B
YAML
11 lines
191 B
YAML
version: '3.8'
|
|
services:
|
|
website:
|
|
build: .
|
|
volumes:
|
|
- source: ./
|
|
target: /work
|
|
type: bind
|
|
- /work/node_modules
|
|
ports:
|
|
- "3000:3000"
|