Files
turtle-river-crossing/Dockerfile

5 lines
112 B
Docker
Raw Normal View History

2026-04-18 18:23:02 +02:00
FROM nginx:alpine
COPY index.html /usr/share/nginx/html/index.html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]