🎉 First commit

This commit is contained in:
Nicolas Rojas 2025-05-29 21:05:30 -05:00
commit 4f3f6de44a
Signed by: nicolas
SSH key fingerprint: SHA256:gi4v1tDcXHbV+fkvqqs9b5rkFlo4Q9DHXp90MifkZK0
22 changed files with 3123 additions and 0 deletions

View file

@ -0,0 +1,5 @@
FROM apache/airflow:2.10.1-python3.9
# Install python packages
COPY ./requirements.txt /code/requirements.txt
#RUN pip install --user --upgrade pip
RUN pip install -r /code/requirements.txt

View file

@ -0,0 +1,8 @@
mlflow==2.3.0
scikit-learn==1.2.2
scipy==1.11.4
pandas==1.5.3
boto3==1.26.121
requests==2.28.2
joblib==1.3.0
apache-airflow-providers-mysql==5.7.0