-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Install pkg-config for IDA Dockerfile (#364)
mysqlclient 2.2.0 requires Debian package pkg-config to be installed. In some Dockerfiles this also leads to tzdata being installed, which prompts for config and causes the image build to hang, so add `DEBIAN_FRONTEND=noninteractive` to prevent the prompt. Also organize packages by general purpose. (Would be nice to have comments on all of the groups, but might as well start with this one.) Fixes #363
- Loading branch information
Showing
2 changed files
with
13 additions
and
8 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,14 +21,11 @@ MAINTAINER [email protected] | |
# gcc; for compiling python extensions distributed with python packages like mysql-client | ||
|
||
# If you add a package here please include a comment above describing what it is used for | ||
RUN apt-get update && apt-get -qy install --no-install-recommends \ | ||
language-pack-en \ | ||
locales \ | ||
python3.8 \ | ||
python3-pip \ | ||
libmysqlclient-dev \ | ||
libssl-dev \ | ||
python3-dev \ | ||
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -qy install --no-install-recommends \ | ||
language-pack-en locales \ | ||
python3.8 python3-dev python3-pip \ | ||
# The mysqlclient Python package has install-time dependencies | ||
libmysqlclient-dev libssl-dev pkg-config \ | ||
gcc | ||
|
||
|
||
|