Files
homelab/stacks/recipe/Dockerfile
2026-03-20 21:29:38 +01:00

8 lines
213 B
Docker

# 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