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

This commit is contained in:
Steven Polley 2023-06-25 11:25:43 -06:00
parent 28505146de
commit 0eb135cbac
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
FROM httpd:alpine
FROM httpd:bullseye
# These variables are inherited from the httpd:alpine image:
# 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 ../sites-available/default.conf "conf/sites-enabled"; \
# 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
ENTRYPOINT [ "/docker-entrypoint.sh" ]