czsk/Dockerfile
Sergei Poljanski 7b679cc9e9
fix accessibility, performance, and security across the site
- Fix lang attribute, add alt text, rel=noopener, defer scripts, OG tags
- Extract inline styles to CSS, add custom properties, remove unused classes
- Add prefers-reduced-motion, fix footer contrast, fix .numbers grid
- Add loading=lazy, remove legacy snowflake.js, strip console.log
- Add nginx.conf with security headers, gzip, caching
- Fix typos (trough→through, Comander→Commander)
2026-03-20 15:10:24 +03:00

8 lines
163 B
Docker

FROM nginx:alpine
COPY --chown=nginx:nginx . /usr/share/nginx/html/
COPY nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]