robosats/frontend/entrypoint.sh

10 lines
324 B
Bash
Raw Permalink Normal View History

#!/bin/sh
# Copy node_modules if it doesn't exist
2023-04-16 21:10:48 +03:00
if [ ! -d "/usr/src/frontend/node_modules" ]; then
echo "Looks like the first run of this container. Node modules were not detected on the attached volume, copying them into the attached volume."
cp -R /tmp/node_modules /usr/src/frontend/node_modules
fi
exec "$@"