Skip to content

Commit

Permalink
DESENG-677 Update dagster versions to solve issue (#2575)
Browse files Browse the repository at this point in the history
  • Loading branch information
Baelx authored Aug 14, 2024
1 parent 8d2b133 commit 76fbfd4
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
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

0 comments on commit 76fbfd4

Please sign in to comment.