Skip to content

Commit bd98aa6

Browse files
authored
Add postgres client package (mage-ai#5486)
# Description <!-- Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change. --> close: mage-ai#5468 # How Has This Been Tested? <!-- Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. --> None i didn't find any tests about Dockerfile # Checklist - [ ] The PR is tagged with proper labels (bug, enhancement, feature, documentation) - [ ] I have performed a self-review of my own code - [ ] I have added unit tests that prove my fix is effective or that my feature works - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have made corresponding changes to the documentation cc: @wangxiaoyou1993 <!-- Optionally mention someone to let them know about this pull request -->
1 parent 5225d14 commit bd98aa6

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ RUN \
1717
msodbcsql18\
1818
unixodbc-dev \
1919
graphviz \
20+
# postgres dependencies \
21+
postgresql-client \
2022
# R
2123
r-base && \
2224
apt-get clean && \

dev.Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ RUN \
2020
nfs-common \
2121
# odbc dependencies
2222
msodbcsql18 \
23-
unixodbc-dev && \
23+
unixodbc-dev \
24+
# postgres dependencies \
25+
postgresql-client && \
2426
apt-get clean && \
2527
rm -rf /var/lib/apt/lists/*
2628

0 commit comments

Comments
 (0)