forked from dbt-labs/dbt-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev/grace-kelly' into dev/stephen-girard
- Loading branch information
Showing
58 changed files
with
1,533 additions
and
381 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
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
* |
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 |
---|---|---|
@@ -1,14 +1,16 @@ | ||
FROM python:3.6 | ||
|
||
RUN apt-get update | ||
|
||
RUN apt-get install -y python-pip netcat | ||
RUN apt-get install -y python-dev python3-dev | ||
# do these on one line so changes trigger apt-get update | ||
RUN apt-get update && \ | ||
apt-get install -y python-pip netcat python-dev python3-dev postgresql | ||
|
||
RUN pip install pip --upgrade | ||
RUN pip install virtualenv | ||
RUN pip install virtualenvwrapper | ||
RUN pip install tox | ||
|
||
RUN useradd -mU dbt_test_user | ||
USER dbt_test_user | ||
|
||
WORKDIR /usr/src/app | ||
RUN cd /usr/src/app |
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
Oops, something went wrong.