Add pkg-config to dockerfile

This commit is contained in:
Ariel Rin 2023-07-11 22:36:15 +10:00
parent 5e14ea4573
commit 56d70e6c74
No known key found for this signature in database

View File

@ -21,7 +21,7 @@ RUN mkdir -p ${VIRTUAL_ENV} \
# Install build dependencies
RUN apt-get update && apt-get upgrade -y && apt-get install -y \
libmariadb-dev gcc supervisor git htop
libmariadb-dev gcc supervisor git htop pkg-config
# Switch to non-root user
USER ${AUTH_USER}