cryptalk/docker-entrypoint.sh

8 lines
88 B
Bash
Raw Permalink Normal View History

2017-01-15 16:28:34 -05:00
#!/bin/sh
2017-01-14 18:47:20 -05:00
set -e
2017-01-15 16:28:34 -05:00
cp -R /usr/src/app/public/* /usr/src/app/external-public/
2017-01-14 18:47:20 -05:00
2017-01-15 16:28:34 -05:00
exec "$@"