1
0
mirror of synced 2026-01-08 12:03:02 -05:00

cython >.> (#28675)

This commit is contained in:
Edward Gao
2023-07-25 15:31:42 -07:00
committed by GitHub
parent 221cbdc093
commit a8b099c49e
4 changed files with 15 additions and 3 deletions

View File

@@ -8,9 +8,12 @@
# Please reach out to the Connectors Operations team if you have any question.
FROM airbyte/integration-base-java:dev AS build
RUN yum install -y python3 python3-devel jq sshpass git && yum clean all && \
RUN yum install -y python3 python3-devel jq sshpass git gcc-c++ && yum clean all && \
alternatives --install /usr/bin/python python /usr/bin/python3 60 && \
python -m ensurepip --upgrade && \
# these two lines are a workaround for https://github.com/yaml/pyyaml/issues/601
pip3 install wheel && \
pip3 install "Cython<3.0" "pyyaml==5.4" --no-build-isolation && \
pip3 install dbt-clickhouse>=1.4.0
# Luckily, none of normalization's files conflict with destination-clickhouse's files :)

View File

@@ -11,6 +11,9 @@ FROM airbyte/integration-base-java:dev AS build
RUN yum install -y python3 python3-devel jq sshpass git && yum clean all && \
alternatives --install /usr/bin/python python /usr/bin/python3 60 && \
python -m ensurepip --upgrade && \
# these two lines are a workaround for https://github.com/yaml/pyyaml/issues/601
pip3 install wheel && \
pip3 install "Cython<3.0" "pyyaml==5.4" --no-build-isolation && \
pip3 install dbt-sqlserver==1.0.0
# Luckily, none of normalization's files conflict with destination-mssql's files :)

View File

@@ -9,9 +9,12 @@
FROM airbyte/integration-base-java:dev AS build
# amazon linux 2 isn't compatible with urllib3 2.x, so force 1.26.15
RUN yum install -y python3 python3-devel jq sshpass git && yum clean all && \
RUN yum install -y python3 python3-devel jq sshpass git gcc-c++ && yum clean all && \
alternatives --install /usr/bin/python python /usr/bin/python3 60 && \
python -m ensurepip --upgrade && \
# these two lines are a workaround for https://github.com/yaml/pyyaml/issues/601
pip3 install wheel && \
pip3 install "Cython<3.0" "pyyaml==5.4" --no-build-isolation && \
pip3 install dbt-redshift==1.0.0 "urllib3<2"
# Luckily, none of normalization's files conflict with destination-bigquery's files :)

View File

@@ -8,9 +8,12 @@
# Please reach out to the Connectors Operations team if you have any question.
FROM airbyte/integration-base-java:dev AS build
RUN yum install -y python3 python3-devel jq sshpass git && yum clean all && \
RUN yum install -y python3 python3-devel jq sshpass git gcc-c++ && yum clean all && \
alternatives --install /usr/bin/python python /usr/bin/python3 60 && \
python -m ensurepip --upgrade && \
# these two lines are a workaround for https://github.com/yaml/pyyaml/issues/601
pip3 install wheel && \
pip3 install "Cython<3.0" "pyyaml==5.4" --no-build-isolation && \
pip3 install dbt-tidb==1.0.1
# Luckily, none of normalization's files conflict with destination-tidb's files :)