Files
turtle-river-crossing/Dockerfile
2026-04-18 18:23:02 +02: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;"]