M109/openshift/Dockerfile

10 lines
163 B
Text
Raw Permalink Normal View History

2024-06-26 12:20:51 +00:00
FROM nginxinc/nginx-unprivileged
WORKDIR /usr/share/nginx/html
COPY index.html .
EXPOSE 8090
CMD ["nginx", "-g", "daemon off;", "-c", "/etc/nginx/nginx.conf"]