Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DESENG-677 Update dagster versions to solve issue #2575

Merged
merged 1 commit into from
Aug 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## August 13, 2024
- **Task** Fix dagster etl error in "dev" environment [🎟️ DESENG-677](https://citz-gdx.atlassian.net/browse/DESENG-677)

## August 8, 2024

- **Feature** New engagement details page [🎟️ DESENG-666](https://citz-gdx.atlassian.net/browse/DESENG-666)
Expand Down
6 changes: 3 additions & 3 deletions met-etl/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
FROM python:3.12.2-bullseye

ARG DAGSTER_VERSION=0.19.3
ARG DAGSTER_VERSION=0.23.15

RUN pip install --upgrade pip
# ==> Add Dagster layer
RUN \
pip install \
dagster==1.3.3 \
dagster-postgres==0.19.3 \
dagster==1.7.15 \
dagster-postgres==${DAGSTER_VERSION} \
dagster-celery[flower,redis,kubernetes]==${DAGSTER_VERSION} \
dagster-aws==${DAGSTER_VERSION} \
dagster-k8s==${DAGSTER_VERSION} \
Expand Down
6 changes: 3 additions & 3 deletions met-etl/container/user_code/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
FROM python:3.12.2-bullseye

ARG DAGSTER_VERSION=0.19.3
ARG DAGSTER_VERSION=0.23.15

RUN pip install --upgrade pip
# ==> Add Dagster layer
RUN \
pip install \
dagster==1.3.3 \
dagster-postgres==0.19.3 \
dagster==1.7.15 \
dagster-postgres==${DAGSTER_VERSION} \
dagster-celery[flower,redis,kubernetes]==${DAGSTER_VERSION} \
dagster-aws==${DAGSTER_VERSION} \
dagster-k8s==${DAGSTER_VERSION} \
Expand Down
Loading