-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a17215e
commit 67c78ba
Showing
2 changed files
with
6 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,8 @@ USER root | |
RUN apt-get update --allow-releaseinfo-change \ | ||
&& apt-get install --no-install-recommends -y \ | ||
build-essential \ | ||
libpq-dev | ||
libpq-dev \ | ||
curl | ||
|
||
COPY ./dbt_af ${AIRFLOW_HOME}/dbt_af/dbt_af | ||
COPY ./dbt_af_functional_tests ${AIRFLOW_HOME}/dbt_af/dbt_af_functional_tests | ||
|
@@ -43,10 +44,6 @@ FROM airflow-dbt-af as airflow-dbt-af-ci | |
LABEL maintainer="Nikita Yurasov <[email protected]>" | ||
# install poetry | ||
USER root | ||
RUN ACCEPT_EULA=Y apt-get -y -qq -o Dpkg::Use-Pty=0 update && \ | ||
apt-get -y -qq -o Dpkg::Use-Pty=0 upgrade && \ | ||
apt-get -y -qq -o Dpkg::Use-Pty=0 install \ | ||
curl gcc python3-dev | ||
ARG POETRY_UID=65533 | ||
ARG POETRY_GID=65533 | ||
RUN groupadd -g $POETRY_GID -o poetry | ||
|