From a96ee886926c4afbdafbd8d438619af1ed97f930 Mon Sep 17 00:00:00 2001 From: Orette D'Aguilar Date: Wed, 20 Jul 2016 15:59:50 -0500 Subject: [PATCH] Added pkg-config to the PHP extentions and Tools that are installed from APT --- workspace/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/workspace/Dockerfile b/workspace/Dockerfile index 9e12b10b..1ab341f4 100644 --- a/workspace/Dockerfile +++ b/workspace/Dockerfile @@ -47,7 +47,8 @@ RUN apt-get update && apt-get install -y --force-yes \ git \ curl \ vim \ - nano + nano \ + pkg-config # Clean up, to free some space RUN apt-get clean @@ -93,4 +94,4 @@ WORKDIR /var/www/laravel ARG INSTALL_PRESTISSIMO=false RUN if [ "$INSTALL_PRESTISSIMO" = true ] ; then \ composer global require "hirak/prestissimo:^0.3"; \ - fi \ No newline at end of file + fi