mount all apps in container

This commit is contained in:
2025-07-21 09:18:16 +02:00
parent fd73e1367c
commit 119583c730
8 changed files with 64 additions and 21 deletions

View File

@@ -1,3 +1,4 @@
import pandas as pd
import polars as pl
from dagster import (
@@ -22,6 +23,16 @@ partitions_def_multi = MultiPartitionsDefinition(
)
@asset(
# tags={
# "dagster/executor": "other_executor"
# },
)
def dummy_asset():
"""A dummy asset to ensure the module is recognized by Dagster."""
return pd.DataFrame({"dummy": [1, 2, 3]})
@asset(
io_manager_key="polars_parquet_io_manager",
partitions_def=partitions_def_single,