switch to debian for required apache module
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Steven Polley 2023-06-25 11:25:43 -06:00
parent 28505146de
commit 0eb135cbac

View File

@ -1,4 +1,4 @@
FROM httpd:alpine FROM httpd:bullseye
# These variables are inherited from the httpd:alpine image: # These variables are inherited from the httpd:alpine image:
# ENV HTTPD_PREFIX /usr/local/apache2 # ENV HTTPD_PREFIX /usr/local/apache2
@ -50,7 +50,7 @@ RUN chmod +x /docker-entrypoint.sh; \
ln -s ../conf-available/dav.conf "conf/conf-enabled"; \ ln -s ../conf-available/dav.conf "conf/conf-enabled"; \
ln -s ../sites-available/default.conf "conf/sites-enabled"; \ ln -s ../sites-available/default.conf "conf/sites-enabled"; \
# Install openssl if we need to generate a self-signed certificate. # Install openssl if we need to generate a self-signed certificate.
apk add --no-cache openssl apt update -y && apt upgrade -y && apt install openssl apr-util-bdb -y
EXPOSE 80/tcp 443/tcp EXPOSE 80/tcp 443/tcp
ENTRYPOINT [ "/docker-entrypoint.sh" ] ENTRYPOINT [ "/docker-entrypoint.sh" ]