Daniel Nilsen
03/03/2022, 9:53 AMlocal agent
. The fix for that was to run the agent from the folder of the flow. How do I fix this for the docker agent when the flow is dockerized?
Failed to load and execute flow run: ModuleNotFoundError("No module named 'parameters'")
Anna Geller
Daniel Nilsen
03/03/2022, 10:25 AMroot
- flow.py
- paramenters.py
Daniel Nilsen
03/03/2022, 10:26 AMCOPY ./src/flows/data_transformation ./
All my files are in the data_transformation folderDaniel Nilsen
03/03/2022, 10:30 AM_stored_as_script_=True
Anna Geller
Anna Geller
Anna Geller
Daniel Nilsen
03/03/2022, 10:58 AMFROM node:16
RUN apt-get update
RUN apt-get install -y python3-pip
RUN pip3 install --no-cache --upgrade pip setuptools
COPY ./requirements.txt ./requirements.txt
RUN pip3 install -r requirements.txt
COPY ./src/flows/data_transformation ./
there are several python files inside the data_transformation folder
I use node to run a javascript file as a subprocess, so I need node.js for my flowDaniel Nilsen
03/03/2022, 11:00 AMsetuptools
?Anna Geller
Anna Geller
Daniel Nilsen
03/03/2022, 11:12 AMAnna Geller