Files
MOHPortalTest-AllAgents-All…/qwen/php/docker/nginx/Dockerfile
2025-10-24 16:29:40 -05:00

9 lines
178 B
Docker

# docker/nginx/Dockerfile
FROM nginx:alpine
COPY nginx.conf /etc/nginx/nginx.conf
COPY default.conf /etc/nginx/conf.d/default.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]