clean this up a bit

This commit is contained in:
ICScaryThings 2022-07-01 20:34:16 -04:00
parent 2c090f71df
commit a679f94d6e
1 changed files with 9 additions and 3 deletions

View File

@ -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