Files
recipe-mockup/Dockerfile
ulfrxdev 02fb8a2754
All checks were successful
Build and Deploy / build-and-push (push) Successful in 26s
Add images to docker image
2026-03-27 22:53:25 +01:00

12 lines
353 B
Docker

# 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 images /usr/share/nginx/html/images
COPY js /usr/share/nginx/html/js
EXPOSE 80