Add recipe mockup

This commit is contained in:
2026-03-20 21:29:38 +01:00
parent 6e0d650f54
commit c4d2e74703
9 changed files with 1062 additions and 0 deletions

8
stacks/recipe/Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
# Use the lightweight Nginx image
FROM nginx:alpine
# Copy everything from your repository into the Nginx serving directory
COPY ./ /usr/share/nginx/html
# Tell Docker this container listens on port 80
EXPOSE 80