🗃️ Committing everything that changed 🗃️

This commit is contained in:
casjay 2022-10-10 10:50:46 -04:00
parent 6bd78df6ea
commit d0463b0ba8
No known key found for this signature in database
GPG Key ID: 4F765975C1F0EE5F

View File

@ -13,7 +13,6 @@ RUN apk -U upgrade && \
openssl \
openssl-dev \
linux-headers \
python2 \
rrdtool \
php8-cgi
@ -23,14 +22,14 @@ RUN git clone https://github.com/cherokee/webserver.git . && \
./configure CFLAGS="-static" --prefix=/usr/local/share/cherokee && \
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 \
apk del --no-cache \
alpine-sdk \
autoconf \
automake \
gettext \
git \
libtool \
openssl
libtool && \
rm -Rf /var/cache/apk/* /tmp/* /var/tmp/* /usr/src/*
FROM casjaysdevdocker/php:latest
ARG BUILD_DATE="$(date +'%Y-%m-%d %H:%M')"