🎉 First commit
This commit is contained in:
commit
4f3f6de44a
22 changed files with 3123 additions and 0 deletions
5
docker/airflow/Dockerfile
Normal file
5
docker/airflow/Dockerfile
Normal 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
|
8
docker/airflow/requirements.txt
Normal file
8
docker/airflow/requirements.txt
Normal 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
|
4
docker/fast_api/Dockerfile
Normal file
4
docker/fast_api/Dockerfile
Normal file
|
@ -0,0 +1,4 @@
|
|||
FROM python:3.9
|
||||
# Install python packages
|
||||
COPY ./requirements.txt /code/requirements.txt
|
||||
RUN pip install -r /code/requirements.txt
|
11
docker/fast_api/requirements.txt
Normal file
11
docker/fast_api/requirements.txt
Normal file
|
@ -0,0 +1,11 @@
|
|||
mlflow==2.3.0
|
||||
fastapi>=0.68.0,<0.69.0
|
||||
uvicorn>=0.15.0,<0.16.0
|
||||
scikit-learn==1.2.2
|
||||
numpy==1.24.3
|
||||
pandas==1.5.3
|
||||
scipy==1.11.4
|
||||
psutil==5.9.5
|
||||
typing_extensions==4.11.0
|
||||
boto3==1.26.121
|
||||
mysql-connector-python==8.4.0
|
4
docker/jupyter/Dockerfile
Normal file
4
docker/jupyter/Dockerfile
Normal file
|
@ -0,0 +1,4 @@
|
|||
FROM python:3.9
|
||||
# Install python packages
|
||||
COPY ./requirements.txt /code/requirements.txt
|
||||
RUN pip install -r /code/requirements.txt
|
9
docker/jupyter/requirements.txt
Normal file
9
docker/jupyter/requirements.txt
Normal file
|
@ -0,0 +1,9 @@
|
|||
mlflow==2.3.0
|
||||
jupyter==1.0.0
|
||||
jupyterlab==3.6.1
|
||||
pandas==1.5.3
|
||||
scikit-learn==1.4.2
|
||||
scipy==1.11.4
|
||||
boto3==1.26.121
|
||||
requests==2.28.2
|
||||
joblib==1.3.0
|
4
docker/mlflow/Dockerfile
Normal file
4
docker/mlflow/Dockerfile
Normal file
|
@ -0,0 +1,4 @@
|
|||
FROM python:3.10-slim-buster
|
||||
# Install python packages
|
||||
COPY ./requirements.txt /code/requirements.txt
|
||||
RUN pip install -r /code/requirements.txt
|
3
docker/mlflow/requirements.txt
Normal file
3
docker/mlflow/requirements.txt
Normal file
|
@ -0,0 +1,3 @@
|
|||
mlflow==2.3.0
|
||||
boto3==1.26.121
|
||||
pymysql==1.1.1
|
Loading…
Add table
Add a link
Reference in a new issue