🗃️ Committing everything that changed 🗃️

This commit is contained in:
casjay 2022-10-11 12:39:39 -04:00
parent 0f9ee38db1
commit 5b6fa95b93
No known key found for this signature in database
GPG Key ID: 4F765975C1F0EE5F

View File

@ -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 "<p style='text-align:center'>Built from $(git rev-parse --short HEAD) on $(date)</p>" > ./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 "<p style='text-align:center'>Built from $(git rev-parse --short HEAD) on $(date)</p>" > ./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