feat(docker): add docker build

This commit is contained in:
DCsunset 2020-07-17 00:40:29 -07:00
parent 83d6f1a13c
commit 380933e710
2 changed files with 39 additions and 0 deletions

5
docker/start.sh Executable file
View file

@ -0,0 +1,5 @@
#!/bin/sh
mkdir -p /run/nginx
cd /src/backend
npm start &
nginx -g 'daemon off;'