- 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)
8 lines
163 B
Docker
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;"]
|