add docker build steps
parent
acb3b0b80f
commit
8cede069f7
@ -0,0 +1,5 @@
|
|||||||
|
FROM node:16
|
||||||
|
|
||||||
|
# Assuming volume mount to /app
|
||||||
|
WORKDIR /app
|
||||||
|
CMD ["sh", "/app/build.sh"]
|
@ -0,0 +1,5 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
echo 'install'
|
||||||
|
npm install
|
||||||
|
npm run build
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue