FROM docker.io/debian:12-slim as base ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update \ && apt-get install -y --no-install-recommends \ certbot \ gettext \ netcat-openbsd \ && rm -rf /var/lib/apt/lists/* COPY entrypoint.sh /usr/local/bin/ WORKDIR /web/ ENTRYPOINT ["entrypoint.sh"]