FROM debian:12.1-slimENV SERVER_VERSION=develLABEL version="${SERVER_VERSION}" \description="A cross-platform, high-performance and asynchronous web server for static files-serving." \maintainer="Jose Quintana <joseluisq.net>"RUN set -eux \&& DEBIAN_FRONTEND=noninteractive apt-get update -qq \&& DEBIAN_FRONTEND=noninteractive apt-get install -qq -y --no-install-recommends --no-install-suggests \ca-certificates \tzdata \# Clean up local repository of retrieved packages and remove the package lists&& apt-get clean \&& rm -rf /var/lib/apt/lists/* \&& trueCOPY ./docker/devel/static-web-server /usr/local/bin/COPY ./docker/debian/entrypoint.sh /COPY ./docker/public /publicEXPOSE 80STOPSIGNAL SIGQUITENTRYPOINT ["/entrypoint.sh"]CMD ["static-web-server"]# MetadataLABEL org.opencontainers.image.vendor="Jose Quintana" \org.opencontainers.image.url="https://github.com/static-web-server/static-web-server" \org.opencontainers.image.title="Static Web Server" \org.opencontainers.image.description="A cross-platform, high-performance and asynchronous web server for static files-serving." \org.opencontainers.image.version="${SERVER_VERSION}" \org.opencontainers.image.documentation="https://github.com/static-web-server/static-web-server"