grim/containers/apache2-trac

Initial revision
draft
2021-05-02, Gary Kramlich
486632db55b2
Initial revision
FROM debian:buster
MAINTAINER Gary Kramlich <grim@reaperworld.com>
RUN set -ex && \
apt-get update && \
apt-get install -y \
apache2 libapache2-mod-wsgi libapache2-mod-xsendfile \
trac \
&& \
apt-get clean && \
rm -rf /var/lib/apt/lists/
# https://httpd.apache.org/docs/2.4/stopping.html#gracefulstop
STOPSIGNAL SIGWINCH
COPY apache2-foreground /usr/local/bin/
EXPOSE 80
CMD ["apache2-foreground"]