From a679f94d6e427121dadc47dd960e7357d7912e3e Mon Sep 17 00:00:00 2001 From: ICScaryThings Date: Fri, 1 Jul 2022 20:34:16 -0400 Subject: [PATCH] clean this up a bit --- Dockerfile.build | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/Dockerfile.build b/Dockerfile.build index 0d7502e..0dd2075 100644 --- a/Dockerfile.build +++ b/Dockerfile.build @@ -1,10 +1,16 @@ # Container just for building the code and debug FROM debian:testing -ENV BUILD_REQ="build-essential libcurl4-gnutls-dev libcjson-dev libpcre3-dev libfcgi-dev git pkgconf libpcre2-dev" - RUN apt update && apt upgrade -y -RUN apt install -y $BUILD_REQ fcgiwrap +RUN apt install -y \ + build-essential \ + libcurl4-gnutls-dev \ + libcjson-dev \ + libpcre3-dev \ + libpcre2-dev \ + libfcgi-dev \ + git pkgconf \ + fcgiwrap WORKDIR /usr/local/src/treebird