Files
wordpress-stack/docker/nginx/Dockerfile
2025-12-29 17:28:49 -03:00

10 lines
220 B
Docker

ARG NGINX_VERSION=stable
FROM nginx:${NGINX_VERSION}-alpine
RUN rm -rf /etc/nginx/conf.d/default.conf
COPY --chmod=755 /scripts/docker-entrypoint.d/* /docker-entrypoint.d
COPY templates /etc/nginx/templates
EXPOSE 80