Hi @Tran Hong Thu (DPS.VI.DTS) ,
when you run the job, it might take different user because the Dockerfile runs only once when you are building the environment later when you invoke it executes your scoring script with default user. You try using os.environ["AZUREML_BI_OUTPUT_PATH"]
as output path instead of using /tmp
or /home
. you can refer this sample one where writing predictions to output path.
Thank you