# libreshop/nginx — reverse proxy fronting libreshop adapters. FROM nginx:1.26.2 # White-label default config rendered at startup via envsubst. # Adapters override the whole nginx.conf via compose `configs:`. COPY nginx.conf.template /etc/nginx/nginx.conf.template COPY docker-entrypoint.sh /docker-entrypoint.sh RUN chmod +x /docker-entrypoint.sh CMD ["/docker-entrypoint.sh"]