Files
Wordpress-Ansible/snake/Dockerfile

10 lines
195 B
Docker
Raw Normal View History

2025-12-08 09:45:23 +01:00
FROM nginx:stable-alpine
2025-12-08 07:50:32 +00:00
2025-12-08 09:45:23 +01:00
# Copy Snake game HTML
COPY index.html /usr/share/nginx/html/index.html
2025-12-08 07:50:32 +00:00
2025-12-08 09:45:23 +01:00
# Copy custom Nginx config with stub_status
2025-12-08 07:50:32 +00:00
COPY nginx.conf /etc/nginx/nginx.conf
2025-12-08 09:45:23 +01:00
EXPOSE 80 81