Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix ENTRYPOINT to use 'dbt' #2475

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@
- dbt now logs using the adapter plugin's ideas about how relations should be displayed ([dbt-spark/#74](https:/fishtown-analytics/dbt-spark/issues/74), [#2450](https:/fishtown-analytics/dbt/pull/2450))
- The create_adapter_plugin.py script creates a version 2 dbt_project.yml file ([#2451](https:/fishtown-analytics/dbt/issues/2451), [#2455](https:/fishtown-analytics/dbt/pull/2455))
- Fixed dbt crashing with an AttributeError on duplicate sources ([#2463](https:/fishtown-analytics/dbt/issues/2463), [#2464](https:/fishtown-analytics/dbt/pull/2464))
- Fixed DBT Docker entrypoint ([#2470](https:/fishtown-analytics/dbt/issues/2470), [#2475](https:/fishtown-analytics/dbt/pull/2475))

Contributors:
- [@dmateusp](https:/dmateusp) ([#2475](https:/fishtown-analytics/dbt/pull/2475))

## dbt 0.17.0rc1 (May 12, 2020)

Expand Down
2 changes: 1 addition & 1 deletion scripts/build-dbt.py
Original file line number Diff line number Diff line change
Expand Up @@ -740,7 +740,7 @@ def get_dockerfile_contents(self):
VOLUME /usr/app

USER dbt_user
CMD ['dbt', 'run']
ENTRYPOINT dbt
'''
)

Expand Down