Adjusted entrypoint.sh to place python cache directory in tmp to not messup directory structure

This commit is contained in:
Reto Bollinger 2025-01-10 10:33:24 +01:00
parent 1f316ad284
commit 6abcf10335

View file

@ -1,5 +1,7 @@
#!/bin/bash
export PYTHONPYCACHEPREFIX=/tmp
sh -c ". /opt/venv/bin/activate && exec python /opt/lektor/scripts/calendar-fetcher.py ${CALENDAR_URL} > /opt/lektor/project/content/termine/contents.lr"
# TODO As the file reads from the same file as it's output is afterwards piped into this leads to synchronization/buffering issues, we therefore write to a temporaray file and move it to the right place in a subsequent step
tempfile=$(mktemp)