Files
IOnex_Web/Dockerfile
T
2026-06-17 20:02:33 -05:00

5 lines
112 B
Docker

FROM nginx:alpine
COPY index.html /usr/share/nginx/html/index.html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]