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
03/03/2022, 10:17 AMDaniel Nilsen
03/03/2022, 10:25 AMroot
- flow.py
- paramenters.py
COPY ./src/flows/data_transformation ./
All my files are in the data_transformation folder_stored_as_script_=True
Anna Geller
03/03/2022, 10:42 AMDaniel 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 flowsetuptools
?Anna Geller
03/03/2022, 11:03 AMDaniel Nilsen
03/03/2022, 11:12 AMAnna Geller
03/03/2022, 11:15 AM