Running airflow in docker-compose results in `Modu...
# troubleshooting
f
Running airflow in docker-compose results in
ModuleNotFoundError: No module named 'psycopg2'
the
Dockerfile
is unchanged. no
pip freeze > requirements.txt
apple m1, python 3.8, docker 20.10
Copy code
airflow-scheduler:
    image: meltano-bi:prod
    build: ./meltano    
    command: invoke airflow scheduler
when i
pip freeze
and
docker build
i get:
Copy code
#6 13.04 ERROR: No matching distribution found for ipython==7.28.0
------
executor failed running [/bin/sh -c pip install -r requirements.txt]: exit code: 1
ERROR: Service 'meltano-ui' failed to build : Build failed
solved the docker build issue by removing all version locks from the requirements.txt
still running into
ModuleNotFoundError: No module named 'psycopg2'
c
Hi Finn. What's your
pip_url
look like for Airflow (under
orchestrators
in
meltano.yml
)?