You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RUN uv pip install --no-cache "apache-airflow==${AIRFLOW_VERSION}" -r requirements.txt
But in local dev and in CI, we use the uv.lock, because we uv run ... everything (e.g. uv run pytest).
We should use a single consistent approach for running things and for specifying dependencies. That might be compiling to and installing from requirements.txt, since that might be what we have to use in the Airflow Dockerfile?
The text was updated successfully, but these errors were encountered:
Per post-standup discussion: our
Dockerfile
has airflow installing dependencies fromrequirements.txt
, seerialto-airflow/Dockerfile
Line 14 in ec6bbd2
But in local dev and in CI, we use the
uv.lock
, because weuv run ...
everything (e.g.uv run pytest
).We should use a single consistent approach for running things and for specifying dependencies. That might be compiling to and installing from
requirements.txt
, since that might be what we have to use in the AirflowDockerfile
?The text was updated successfully, but these errors were encountered: