-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1110 from fishtown-analytics/fix/dbt-deps-issues
- Loading branch information
Showing
13 changed files
with
418 additions
and
85 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 |
---|---|---|
@@ -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
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.