added asset to read agency_list.csv and add it to table in gtfs.duckdb

This commit is contained in:
Ben Varick 2025-11-05 18:22:26 -08:00
parent 7791d034ae
commit 2b47a45b8f
Signed by: ben
SSH key fingerprint: SHA256:jWnpFDAcacYM5aPFpYRqlsamlDyKNpSj3jj+k4ojtUo
9 changed files with 44 additions and 4 deletions

View file

@ -6,13 +6,13 @@ FROM python:3.10-slim
RUN pip install \
dagster \
dagster-postgres \
dagster-docker
dagster-docker \
dagster-duckdb \
pandas
WORKDIR /opt/dagster/app
COPY user_code/gtfs /opt/dagster/app
COPY definitions.py /opt/dagster/app
# Run dagster gRPC server on port 4000
EXPOSE 4000