Added meal planner, pantry and shopping list

This commit is contained in:
2026-03-26 17:10:16 +01:00
parent 7b9db1c5e6
commit c1b3ee5ce6
22 changed files with 2888 additions and 223 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
# Use the lightweight Nginx image
FROM nginx:alpine
COPY nginx/default.conf /etc/nginx/conf.d/default.conf
COPY index.html /usr/share/nginx/html/
COPY manifest.webmanifest /usr/share/nginx/html/
COPY sw.js /usr/share/nginx/html/
COPY icons /usr/share/nginx/html/icons
COPY js /usr/share/nginx/html/js
COPY css /usr/share/nginx/html/css
EXPOSE 80