FROM handsonsecurity/seed-ubuntu:large
ARG DEBIAN_FRONTEND=noninteractive

RUN apt-get update && apt-get install -y \
    apache2 \
    php \
    libapache2-mod-php \
    openssl \
 && rm -rf /var/lib/apt/lists/* \
 && mkdir -p /var/www/bank32 /certs \
 && a2enmod ssl

CMD tail -f /dev/null
