- Real bio: SRE since 1998, sysadmin -> code arc, homelab scope including the 10G symmetric fiber and Dell + Nexus fleet - Off-keyboard texture: hiking, Pokemon Go (GoFest 2026), space, game collecting, currently reading Thinking in Systems, currently playing Helldivers 2 + Pokopia (Switch 2) - Tagline reframed as a literal terminal session: $ unbiasedgeek with the brutal-truth creed as command output - Phosphor green palette (#7ee787) on a green-tinted dark background with a subtle radial glow - Self-hosted Inter (body) + Share Tech Mono (terminal/headings) - Two-column layout: main content + sticky sidebar (Find me, Interests, Not into); collapses to single column on mobile - Project list with inline tech pills next to each project name - SVG monogram favicon, OpenGraph + Twitter card meta tags - profile photo: square center-crop, 512px, webp + jpg fallback
10 lines
335 B
Docker
10 lines
335 B
Docker
FROM nginx:alpine
|
|
|
|
COPY index.html /usr/share/nginx/html/index.html
|
|
COPY style.css /usr/share/nginx/html/style.css
|
|
COPY favicon.svg /usr/share/nginx/html/favicon.svg
|
|
COPY profile.webp /usr/share/nginx/html/profile.webp
|
|
COPY profile.jpg /usr/share/nginx/html/profile.jpg
|
|
COPY fonts/ /usr/share/nginx/html/fonts/
|
|
|
|
EXPOSE 80
|