I'm using Docker and in my Dockerfile, I've fired "RUN pip install python-dotenv". Going into the container, I can start my "main.py" script which read a .env file and read a variable from there. It's works.
In my Dagger function, I'm trying to do the same but every time, he told me no module name 'dotenv'. Is it possible that I need to inform Dagger that he need to install my dependencies?
I'm running Dagger like this: dagger call lint
My objective is to have a .env file with global variables like the type of project (python, php, javascript, ...) and a lot of variables like RUN_LINT=True, RUN_FORMAT=False, ... so I can start dagger call run-all in my CI and I'll start all functions (lint, format, fix, document, tests, ...) depending on my environment variables.
Thanks!