FROM ingo/debian:trixie LABEL version="0.0.1" LABEL maintainer="me@example.com" ENV DEBIAN_FRONTEND noninteractive ENV REFRESHED_AT 2026-01-07 RUN set -eux; \ apt-get -qq update; \ apt-get install -y --no-install-recommends nginx RUN find / -xdev -user root -type f -perm /u+s -exec chmod u-s {} + RUN echo 'A warm welcome from your Dockerfile' > /var/www/html/index.html EXPOSE 80 ENTRYPOINT ["/usr/sbin/nginx", "-g", "daemon off;"]