🗃️ Committing everything that changed 🗃️

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

View File

@ -18,6 +18,7 @@ RUN apk -U upgrade && \
rrdtool \ rrdtool \
ffmpeg-dev \ ffmpeg-dev \
geoip-dev \ geoip-dev \
mariadb-dev \
php8-cgi php8-cgi
RUN git clone https://github.com/cherokee/webserver.git . && \ RUN git clone https://github.com/cherokee/webserver.git . && \
@ -35,11 +36,15 @@ RUN git clone https://github.com/cherokee/webserver.git . && \
linux-headers \ linux-headers \
ffmpeg-dev \ ffmpeg-dev \
geoip-dev \ geoip-dev \
mariadb-dev \
libtool && \ libtool && \
mkdir -p /buildroot && \
cp -Rf "/usr/local/" "/buildroot/"
rm -Rf /var/cache/apk/* /tmp/* /var/tmp/* /usr/src/* rm -Rf /var/cache/apk/* /tmp/* /var/tmp/* /usr/src/*
FROM casjaysdevdocker/php:latest AS source FROM casjaysdevdocker/php:latest AS source
COPY --from=build /usr/local/. /usr/local/
COPY --from=build /buildroot/. /usr/local/
COPY ./bin/. /usr/local/bin/ COPY ./bin/. /usr/local/bin/
COPY ./data/. /usr/local/share/template-files/data/ COPY ./data/. /usr/local/share/template-files/data/
COPY ./config/. /usr/local/share/template-files/config/ COPY ./config/. /usr/local/share/template-files/config/