Dockerify pro-salute #10

Merged
mravi merged 17 commits from pro-salute into master 2024-06-02 04:11:39 +00:00
Showing only changes of commit 5ba9ee52ea - Show all commits

18
setup_libs.sh Executable file
View file

@ -0,0 +1,18 @@
#!/bin/bash
cd /app
rm -rf node_modules
yarn install
mkdir -p /app/publichealth/static/libs
echo "created /app/publichealth/static/libs contents "
ls /app/publichealth/static/libs
cp -rf node_modules/@bower_components/* /app/publichealth/static/libs/
# static resources
python manage.py collectstatic --no-input -i media --settings=publichealth.settings.production
python manage.py compress --force --settings=publichealth.settings.production
if [ -d /app/static ]; then
echo "Copying"
cp -a /app/static /pod
fi