-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade airflow and dependencies (#44)
* upgrade airflow and dependencies * update dockerfile * refactor config * update dockerfile * restore gitignore
- Loading branch information
Showing
4 changed files
with
43 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,4 @@ pg-airflow/ | |
ssh/ | ||
.env | ||
variables.py | ||
.DS_Store | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
FROM apache/airflow:2.7.3-python3.10 | ||
|
||
FROM apache/airflow:2.10.0-python3.10 | ||
|
||
USER root | ||
|
||
|
@@ -23,6 +24,9 @@ RUN apt-get install lftp -y | |
RUN apt-get install zip -y | ||
RUN apt-get install wget -y | ||
RUN apt-get install p7zip-full -y | ||
RUN apt-get install nano -y | ||
RUN apt-get install jq -y | ||
RUN apt-get install libmagic1 -y | ||
|
||
RUN chown -R "airflow:root" /opt/airflow/ | ||
|
||
|
@@ -41,6 +45,6 @@ ADD requirements.txt /requirements.txt | |
|
||
RUN pip install -r /requirements.txt | ||
|
||
RUN git config --global user.email "[email protected]" | ||
RUN git config --global user.name "Geoffrey Aldebert (Bot Airflow)" | ||
RUN git config --global user.email "your email" | ||
RUN git config --global user.name "your username" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,33 @@ | ||
GitPython | ||
table-schema-to-markdown==0.4.6 | ||
table-schema-to-markdown==0.4.12 | ||
frictionless==4.25.1 | ||
jsonschema | ||
Unidecode==1.3.2 | ||
Unidecode==1.3.6 | ||
PyYAML | ||
geojson | ||
shapely | ||
minio==7.1.3 | ||
boto3==1.28.0 | ||
minio==7.2.8 | ||
boto3==1.35.0 | ||
emails==0.6 | ||
pandas==1.5.3 | ||
papermill==2.3.4 | ||
plotly==5.6.0 | ||
pandas==2.2.2 | ||
papermill==2.6.0 | ||
plotly==5.24.0 | ||
plotly_express==0.4.1 | ||
kaleido==0.2.1 | ||
ipykernel==5.5.6 | ||
nbconvert==6.5.1 | ||
openpyxl==3.0.9 | ||
openpyxl==3.1.5 | ||
elasticsearch==7.17.0 | ||
elasticsearch_dsl==7.4.0 | ||
requests==2.32.0 | ||
python-dotenv==0.21.0 | ||
swifter==1.1.3 | ||
tweepy==4.8.0 | ||
pytest==7.2.1 | ||
langdetect==1.0.9 | ||
pydantic==2.4.0 | ||
pyproj==3.6.1 | ||
pyproj==3.6.1 | ||
requests==2.32.3 | ||
swifter==1.4.0 | ||
rdflib==6.3.2 | ||
feedgen==1.0.0 | ||
duckdb==0.10.2 | ||
python-magic==0.4.27 |