Skip to content

Commit

Permalink
Update Dockerfile to simplify pip install command
Browse files Browse the repository at this point in the history
Revised the Dockerfile to remove the unnecessary `python -m` prefix for pip install commands. This change ensures the installation of dbt-core and dbt-postgres is consistent with common Docker practices.
  • Loading branch information
billettc committed Sep 13, 2024
1 parent 13016d8 commit b64fc0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get update && \
DEBIAN_FRONTEND=noninteractive pip install cryptography~=3.4 && \
rm -rf /var/cache/apt /var/lib/apt/lists/*

RUN python -m pip install dbt-core dbt-postgres
RUN pip install dbt-core dbt-postgres

ADD /honey-tracker /app/honey-tracker

Expand Down

0 comments on commit b64fc0f

Please sign in to comment.