diff --git a/vortex/dagster/DockerFile b/vortex/dagster/DockerFile deleted file mode 100644 index bc1a2ed..0000000 --- a/vortex/dagster/DockerFile +++ /dev/null @@ -1,20 +0,0 @@ -FROM python:3.10-slim - -RUN mkdir -p /opt/dagster/dagster_home /opt/dagster/app - -COPY pyproject.toml repo.py workspace.yaml /opt/dagster/app/ - -RUN pip install poetry - -RUN poetry install - -ENV DAGSTER_HOME=/opt/dagster/dagster_home/ - -# Copy dagster instance YAML to $DAGSTER_HOME -COPY dagster.yaml /opt/dagster/dagster_home/ - -WORKDIR /opt/dagster/app - -EXPOSE 3000 - -ENTRYPOINT ["dagster-webserver", "-h", "0.0.0.0", "-p", "3000"] diff --git a/vortex/dagster/dagster.yaml b/vortex/dagster/dagster.yaml deleted file mode 100644 index d7c36d6..0000000 --- a/vortex/dagster/dagster.yaml +++ /dev/null @@ -1,24 +0,0 @@ -# storage: -# postgres: -# postgres_db: -# username: -# env: DAGSTER_PG_USERNAME -# password: -# env: DAGSTER_PG_PASSWORD -# hostname: -# env: DAGSTER_PG_HOST -# db_name: -# env: DAGSTER_PG_DB -# port: 5432 - -compute_logs: - module: dagster.core.storage.root - class: LocalArtifactStorage - config: - base_dir: "/opt/dagster/logs/local/" - -local_artifact_storage: - module: dagster.core.storage.root - class: LocalArtifactStorage - config: - base_dir: "/opt/dagster/local/" diff --git a/vortex/dagster/workspace.yaml b/vortex/dagster/workspace.yaml deleted file mode 100644 index 0af8743..0000000 --- a/vortex/dagster/workspace.yaml +++ /dev/null @@ -1,3 +0,0 @@ -load_from: - # References the file copied into your Dockerfile - - python_file: vortex.py