Created
February 2, 2017 20:16
-
-
Save vjdhama/654b7eb6d17c0142f9f69484b25aa012 to your computer and use it in GitHub Desktop.
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
FROM postgres:9.5 | |
ENV DEBIAN_FRONTEND=noninteractive | |
RUN set -xe && \ | |
apt-get update && \ | |
apt-get install -y --no-install-recommends \ | |
ca-certificates \ | |
postgresql-9.5-partman | |
EXPOSE 5432 | |
CMD ["postgres"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment