Files
Hexo-Async-Offends/gateway/Dockerfile-kubernetes
offends f1ecb4ed07
All checks were successful
continuous-integration/drone Build is passing
synchronization
2025-08-25 13:02:18 +08:00

11 lines
280 B
Plaintext

ARG IMAGENAME
FROM ${IMAGENAME}
ENV DOMAIN_NAME=default
EXPOSE 80
COPY ./default.conf.template /etc/nginx/conf.d/default.conf.template
CMD /bin/sh -c "envsubst '\$localhost' < /etc/nginx/conf.d/default.conf.template > /etc/nginx/conf.d/default.conf && nginx -g 'daemon off;'"