2021-04-09 14:31:14 +00:00
|
|
|
# Defines the tag for OBS and build script builds:
|
|
|
|
#!BuildTag: opensuse/httpd:latest
|
|
|
|
#!BuildTag: opensuse/httpd:%%MINOR%%
|
|
|
|
#!BuildTag: opensuse/httpd:%%PKG_VERSION%%
|
|
|
|
#!BuildTag: opensuse/httpd:%%PKG_VERSION%%-%RELEASE%
|
|
|
|
|
|
|
|
FROM opensuse/tumbleweed
|
|
|
|
|
|
|
|
# labelprefix=org.opensuse.httpd
|
|
|
|
PREFIXEDLABEL org.opencontainers.image.title="Apache httpd container"
|
|
|
|
PREFIXEDLABEL org.opencontainers.image.description="Apache httpd container"
|
|
|
|
PREFIXEDLABEL org.opencontainers.image.created="%BUILDTIME%"
|
|
|
|
PREFIXEDLABEL org.opencontainers.image.version="%%PKG_VERSION%%-%RELEASE%"
|
|
|
|
PREFIXEDLABEL org.opencontainers.image.vendor="openSUSE Project"
|
|
|
|
PREFIXEDLABEL org.openbuildservice.disturl="%DISTURL%"
|
|
|
|
PREFIXEDLABEL org.opensuse.reference="registry.opensuse.org/opensuse/httpd:%%PKG_VERSION%%-%RELEASE%"
|
|
|
|
|
|
|
|
RUN zypper install -y --no-recommends apache2 && \
|
2022-01-14 13:44:28 +00:00
|
|
|
zypper clean && \
|
|
|
|
rm -rf /var/log/* /var/cache/zypp
|
2021-04-09 14:31:14 +00:00
|
|
|
|
|
|
|
# https://httpd.apache.org/docs/2.4/stopping.html#gracefulstop
|
|
|
|
STOPSIGNAL SIGWINCH
|
|
|
|
|
|
|
|
VOLUME /srv/www/htdocs
|
|
|
|
|
|
|
|
EXPOSE 80
|
|
|
|
ENTRYPOINT ["httpd", "-DFOREGROUND"]
|