5 Commits

Author SHA1 Message Date
20a5c7cdaa Alpine 3.22.0 (Apache 2.4.63-r4)
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
also add apache2-http2 and apache2-brotli
2025-06-19 18:20:53 -07:00
fc0b8cfbea Alpine 3.20.2 (Apache 2.4.62-r0)
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
2024-08-22 00:27:22 -07:00
5a064a882a Alpine 3.19.1 (same apache version)
All checks were successful
continuous-integration/drone/push Build is passing
2024-03-08 21:55:23 -08:00
b2369ba59c Alpine 3.19.0 (Apache 2.4.58-r1)
All checks were successful
continuous-integration/drone/push Build is passing
2023-12-16 12:08:33 -08:00
e6b4191542 Check for ready file every 5 seconds instead of every 10
All checks were successful
continuous-integration/drone/push Build is passing
2023-06-15 20:32:24 -07:00
2 changed files with 3 additions and 3 deletions

View File

@@ -1,11 +1,11 @@
FROM harbor.ntppool.org/perlorg/base-os:3.17.3
FROM harbor.ntppool.org/perlorg/base-os:3.22.0
ENV BUILD_VERSION 1
USER root
WORKDIR /web
VOLUME /git
VOLUME /web/config
RUN apk --no-cache upgrade
RUN apk --no-cache add apache2 apache2-utils apache2-proxy apache2-ssl apr-util-dbd_sqlite3 sqlite
RUN apk --no-cache add apache2 apache2-utils apache2-proxy apache2-http2 apache2-brotli apache2-ssl apr-util-dbd_sqlite3 sqlite
#RUN mkdir /run/apache2; chown apache:apache /run/apache2
RUN mv /etc/apache2/conf.d/proxy.conf /etc/apache2/conf.d/proxy.conf.disabled
RUN ln -s /dev/stderr /var/log/apache2/error.log

View File

@@ -4,7 +4,7 @@ set -ex
if [ ! -z "$READY_FILE" ]; then
while [ ! -e $READY_FILE ]; do
echo waiting for $READY_FILE
sleep 10
sleep 5
done
fi