Skip to content

Commit

Permalink
mysql-client: Use default-mysql-client instead of default-libmysqlcli…
Browse files Browse the repository at this point in the history
…ent-dev

Rails apps using structure.sql need to use mysqldump when setting up the db and running migrations. That is provided by  default-mysql-client.
  • Loading branch information
andrewn617 committed Jul 2, 2024
1 parent e12f6de commit 86cf2ad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion features/mysql-client/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"id": "mysql-client",
"version": "1.0.0",
"version": "1.1.0",
"name": "MySQL Client",
"description": "Installs needed client-side dependencies for Rails apps using MySQL"
}
2 changes: 1 addition & 1 deletion features/mysql-client/install.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh
set -e

apt-get update -y && apt-get -y install --no-install-recommends default-libmysqlclient-dev
apt-get update -y && apt-get -y install --no-install-recommends default-mysql-client

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

0 comments on commit 86cf2ad

Please sign in to comment.