pcasaretto / heroku-toolbox-docker

1 stars 0 forks source link

Install PostgreSql Client #1

Open hugoluchessi opened 8 years ago

hugoluchessi commented 8 years ago

To execute heroku pg:psql we need to have psql client installed locally.

Just add this to the Dockerfile =)

RUN apt-get update && apt-get install -y postgresql-client --no-install-recommends && rm -rf /var/lib/apt/lists/*
pcasaretto commented 8 years ago

PR welcome :)