🗃️ Committing everything that changed 🗃️

This commit is contained in:
casjay 2022-10-11 16:22:27 -04:00
parent 0a65cffe6b
commit f79b81dba1
No known key found for this signature in database
GPG Key ID: 4F765975C1F0EE5F

View File

@ -21,11 +21,12 @@ RUN apk -U upgrade && \
geoip-dev \ geoip-dev \
php8-cgi php8-cgi
RUN git clone https://github.com/cherokee/webserver.git . && \ RUN cd /tmp/build && \
git clone https://github.com/cherokee/webserver.git . && \
libtoolize --force && \ libtoolize --force && \
./autogen.sh --prefix=/usr/local/share/cherokee && \ ./autogen.sh --with-python2=/usr/bin/python2 --prefix=/usr/local/share/cherokee && \
./configure CFLAGS="-static" --prefix=/usr/local/share/cherokee --enable-static-module=all && \ ./configure CFLAGS="-static" --prefix=/usr/local/share/cherokee --enable-static-module=all --with-wwwroot=/data/htdocs/www && \
make LDFLAGS="-all-static" && make install && \ make && make install && \
echo "<p style='text-align:center'>Built from $(git rev-parse --short HEAD) on $(date)</p>" > ./version.txt && \ echo "<p style='text-align:center'>Built from $(git rev-parse --short HEAD) on $(date)</p>" > ./version.txt && \
apk del --no-cache \ apk del --no-cache \
alpine-sdk \ alpine-sdk \
@ -37,9 +38,10 @@ RUN git clone https://github.com/cherokee/webserver.git . && \
ffmpeg-dev \ ffmpeg-dev \
geoip-dev \ geoip-dev \
libtool && \ libtool && \
ln -sf /usr/local/share/cherokee/bin/* /usr/local/bin/ && \
mkdir -p /buildroot && \ mkdir -p /buildroot && \
cp -Rf "/usr/local/." "/buildroot/" && \ cp -Rf "/usr/local/." "/buildroot/" && \
rm -Rf /var/cache/apk/* /tmp/* /var/tmp/* /usr/src/* rm -Rf /var/cache/apk/* /tmp/* /var/tmp/* /tmp/build /usr/src/*
FROM casjaysdevdocker/php:latest AS source FROM casjaysdevdocker/php:latest AS source