Skip to content

Commit

Permalink
Add 2.10.1 Airflow Docker image (aws#139)
Browse files Browse the repository at this point in the history
*Issue #, if available:*

*Description of changes:*
Adding the folder and code for the Airflow 2.10.1 image. Copied the
2.9.2 image and updated the version and constraints. Built and ran
locally with the run.sh script.

By submitting this pull request, I confirm that you can use, modify,
copy, and redistribute this contribution, under the terms of your
choice.

---------

Co-authored-by: Michael Fu <[email protected]>
  • Loading branch information
michaelfu1029 and Michael Fu authored Sep 9, 2024
1 parent 568ab1d commit dc70f3b
Show file tree
Hide file tree
Showing 84 changed files with 109,814 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .code-workspace
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@
{
"name": "airflow-2.9.2",
"path": "./images/airflow/2.9.2"
},
{
"name": "airflow-2.10.1",
"path": "./images/airflow/2.10.1"
}
],
"settings": {}
Expand Down
1 change: 1 addition & 0 deletions images/airflow/2.10.1/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.venv
Empty file.
75 changes: 75 additions & 0 deletions images/airflow/2.10.1/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
{
"files.exclude": {
"**/.DS_Store": true,
"**/.conda": true,
"**/.git": true,
"**/.ruff_cache": true,
"**/.venv": true,
"**/Thumbs.db": true,
"**/typestubs": true,
"**/venv": true
},
"files.watcherExclude": {
"**/.DS_Store": true,
"**/.conda": true,
"**/.git": true,
"**/.ruff_cache": true,
"**/.venv": true,
"**/Thumbs.db": true,
"**/typestubs": true,
"**/venv": true
},
"search.exclude": {
"**/.DS_Store": true,
"**/.conda": true,
"**/.git": true,
"**/.ruff_cache": true,
"**/.venv": true,
"**/Thumbs.db": true,
"**/typestubs": true,
"**/venv": true
},
"python.defaultInterpreterPath": "./.venv/bin/python",
"python.analysis.typeCheckingMode": "off",
"cSpell.words": [
"boto",
"botocore",
"cloudwatchlogs",
"creds",
"dagprocessor",
"dateutil",
"dblock",
"dgram",
"elasticmq",
"esbenp",
"fargate",
"fernet",
"getfl",
"gethostname",
"getpgid",
"getpid",
"gunicorn",
"healthcheck",
"healthchecks",
"hostname",
"hostnames",
"killpg",
"levelname",
"loggroup",
"mwaa",
"nonblock",
"poolclass",
"psycopg",
"PYTHONUNBUFFERED",
"qualname",
"resetdb",
"setfl",
"sqlalchemy",
"statsd",
"taskinstance",
"textwidth",
"triggerer",
"tzutc",
"webserver"
]
}
Loading

0 comments on commit dc70f3b

Please sign in to comment.