docker-ubuntu-vnc-desktop/image/etc/install.sh
Tobias Stein 328e8f1aa1 Add separate docker file for linux 16.04
Enable dynamic path with environment variable which triggers node js build at container runtime
2019-07-08 13:06:02 +02:00

8 lines
No EOL
170 B
Bash

#!/bin/bash
echo 'Building Node.js project...'
cd /src/web \
&& yarn \
&& npm run build
cp -R /src/web/dist/. /usr/local/lib/web/frontend/
echo 'Build finished.'