Files
org-social-website/Dockerfile
Andros Fenollosa c930525fca First commit
2025-11-07 17:24:15 +01:00

18 lines
432 B
Docker

FROM nginx:alpine
# Copy website files to nginx html directory
COPY index.html /usr/share/nginx/html/
COPY style.css /usr/share/nginx/html/
COPY screenshot.png /usr/share/nginx/html/
COPY org-social-logo.png /usr/share/nginx/html/
COPY favicon.png /usr/share/nginx/html/
# Copy custom nginx configuration
COPY nginx.conf /etc/nginx/conf.d/default.conf
# Expose port 80
EXPOSE 80
# Start nginx
CMD ["nginx", "-g", "daemon off;"]