Skip to content

Commit

Permalink
Pin MarkupSafe for normalization (#25577)
Browse files Browse the repository at this point in the history
We were running into a CI/CD system-only bug with dbt that requires this workaround to get it working
---------

Co-authored-by: Octavia Squidington III <octavia-squidington-iii@users.noreply.github.com>
  • Loading branch information
jcowanpdx and octavia-squidington-iii authored Apr 26, 2023
1 parent e41060c commit 3a308ba
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion airbyte-integrations/bases/base-normalization/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ WORKDIR /airbyte
ENV AIRBYTE_ENTRYPOINT "/airbyte/entrypoint.sh"
ENTRYPOINT ["/airbyte/entrypoint.sh"]

LABEL io.airbyte.version=0.4.0
LABEL io.airbyte.version=0.4.1
LABEL io.airbyte.name=airbyte/normalization
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@ RUN pip install .
RUN pip install dbt-oracle==0.4.3

WORKDIR /airbyte/normalization_code/dbt-template/

# Pin MarkupSafe to 2.0.1 per this issue for dbt
# https://github.com/dbt-labs/dbt-core/issues/4745#issuecomment-1044165591
RUN pip install --force-reinstall MarkupSafe==2.0.1

# Download external dbt dependencies
RUN dbt deps

Expand Down

0 comments on commit 3a308ba

Please sign in to comment.