# Base Docker image for running RAP inside Apache server

FROM debian:buster

RUN apt-get update && \
    apt-get install -yq --no-install-recommends \
    apache2 \
    libapache2-mod-php \
    php-xml \
    php-mbstring \
    php-mysql \
    php-curl \
    php-yaml \
    ca-certificates \
    ssl-cert
