Files
hesk-docker/Dockerfile
Luke Tainton ddda2e97e4 Move to GitLab
2022-01-05 22:56:08 +00:00

11 lines
465 B
Docker

FROM php:apache
LABEL maintainer="Luke Tainton <luke@tainton.uk>"
LABEL org.opencontainers.image.source="https://gitlab.com/luketainton/hesk-docker"
COPY --chown=www-data:www-data hesk /srv
COPY vhost.conf /etc/apache2/sites-enabled/000-default.conf
RUN apt-get update && \
apt-get install -y libc-client-dev libkrb5-dev && \
docker-php-ext-configure imap --with-kerberos --with-imap-ssl && \
docker-php-ext-install mysqli imap && \
a2enmod rewrite