From 5b6fa95b939846ca7491e96f6fe07f0f7dc14f7a Mon Sep 17 00:00:00 2001 From: casjay Date: Tue, 11 Oct 2022 12:39:39 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=97=83=EF=B8=8F=20Committing=20everything?= =?UTF-8?q?=20that=20changed=20=F0=9F=97=83=EF=B8=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index f47c896..f38357d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,11 +22,11 @@ RUN apk -U upgrade && \ php8-cgi RUN git clone https://github.com/cherokee/webserver.git . && \ - libtoolize --force && \ - ./autogen.sh --prefix=/usr/local/share/cherokee && \ - ./configure CFLAGS="-static" --prefix=/usr/local/share/cherokee --enable-static-module=all && \ - make LDFLAGS="-all-static" && make install && \ - echo "

Built from $(git rev-parse --short HEAD) on $(date)

" > ./version.txt && \ + #libtoolize --force && \ + #./autogen.sh --prefix=/usr/local/share/cherokee && \ + #./configure CFLAGS="-static" --prefix=/usr/local/share/cherokee --enable-static-module=all && \ + #make LDFLAGS="-all-static" && make install && \ + #echo "

Built from $(git rev-parse --short HEAD) on $(date)

" > ./version.txt && \ apk del --no-cache \ alpine-sdk \ autoconf \ @@ -39,7 +39,7 @@ RUN git clone https://github.com/cherokee/webserver.git . && \ mariadb-dev \ libtool && \ mkdir -p /buildroot && \ - cp -Rf "/usr/local/" "/buildroot/" + cp -Rf "/usr/local/." "/buildroot/" && \ rm -Rf /var/cache/apk/* /tmp/* /var/tmp/* /usr/src/* FROM casjaysdevdocker/php:latest AS source