Minor fix
This commit is contained in:
parent
4fff368db7
commit
94ae46ee9a
|
@ -2,7 +2,10 @@
|
|||
|
||||
set -e
|
||||
|
||||
mkdir /usr/src/app/external-public/
|
||||
cp -R /usr/src/app/public/* /usr/src/app/external-public/
|
||||
# /usr/src/app/external-public kan be mounted as a volume on host to expose
|
||||
# statics to be hosted by host nginx
|
||||
if [ -d /usr/src/app/external-public ]; then
|
||||
cp -R /usr/src/app/public/* /usr/src/app/external-public/
|
||||
fi
|
||||
|
||||
exec "$@"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name" : "cryptalk",
|
||||
"version" : "1.1.18",
|
||||
"version" : "1.1.19",
|
||||
"description" : "Encrypted HTML5/Node.JS instant chat",
|
||||
"main" : "server.js",
|
||||
"subdomain": "cryptalk",
|
||||
|
|
Loading…
Reference in New Issue