Files
guess-number/Dockerfile
2025-09-09 12:44:53 +03:00

7 lines
104 B
Docker

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