commit 44f855b6ab2fe9db5eb55d0c5c8906e1123a50b9 Author: ICScaryThings Date: Fri May 20 22:22:47 2022 -0400 init wip commit of treebird docker build diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..aafce44 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +FROM nginx +#COPY index.html /usr/share/nginx/html + +RUN apt update && apt upgrade + +RUN apt install build-essential libcurl4-gnutls-dev libcjson-dev libpcre3-dev libfcgi-dev git + +ENV TB_BUILD_DIR=/usr/local/src/treebird + +RUN git clone https://git.nekobit.net/repos/treebird.git $TB_BUILD_DIR && make -C $TB_BUILD_DIR all install