8 lines
225 B
Bash
8 lines
225 B
Bash
|
#!/usr/bin/env sh
|
||
|
|
||
|
set -x
|
||
|
|
||
|
NSENTER_PID=$(cat /data/libreoffice.pid)
|
||
|
export UNO_COMMAND="nsenter -t ${NSENTER_PID} -m soffice --convert-to {outputfmt} --outdir {outputdir} {inputfilename}"
|
||
|
. .venv/bin/activate
|
||
|
exec fastapi run
|