Skip to content

Commit d7f63ac

Browse files
committed
Add postgresql-client to postgresql-client feature
Currently when you generate an App with postgres and access the devcontainer, it fails to run `bin/rails db` inside the container terminal because there is no `psql` installed on it. This commit installs postgresql-client so it can be used inside the devcontainer.
1 parent 5a9d856 commit d7f63ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
apt-get update -y && apt-get -y install --no-install-recommends libpq-dev
1+
apt-get update -y && apt-get -y install --no-install-recommends libpq-dev postgresql-client
22

33
rm -rf /var/lib/apt/lists/*

0 commit comments

Comments
 (0)