Update Dockerfile with curl

This commit is contained in:
Eric Gullickson
2025-12-20 09:50:00 -06:00
parent 2174a1b1e3
commit b9801d5f3b
7 changed files with 148 additions and 16 deletions

View File

@@ -34,8 +34,8 @@ Step 1: Fetch Data from VehAPI
python3 vehapi_fetch_snapshot.py --min-year 2020 --max-year 2020
# Full ETL workflow
./reset_database.sh # Clear old data
python3 vehapi_fetch_snapshot.py # Fetch from API
python3 etl_generate_sql.py --snapshot-path snapshots/<date> # Generate SQL
./import_data.sh # Import to Postgres
docker compose exec mvp-redis redis-cli FLUSHALL # Flush Redis Cache for front end
./reset_database.sh # Clear old data
python3 vehapi_fetch_snapshot.py # Fetch from API
python3 etl_generate_sql.py --snapshot-path snapshots/*.sqlite # Generate SQL
./import_data.sh # Import to Postgres
docker compose exec mvp-redis redis-cli FLUSHALL # Flush Redis Cache for front end