made a pixelated interface with catppuccin styling.

This commit is contained in:
2026-01-15 20:40:48 +01:00
parent 880ccb7230
commit fe70f3892c
9 changed files with 1552 additions and 176 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
# Use nginx alpine for minimal size
FROM nginx:alpine
# Copy static files to nginx html directory
COPY index.html /usr/share/nginx/html/
COPY style.css /usr/share/nginx/html/
COPY script.js /usr/share/nginx/html/
# Expose port 80
EXPOSE 80
# Start nginx
CMD ["nginx", "-g", "daemon off;"]