mirror of
https://github.com/tanrax/org-social-website
synced 2026-01-07 05:43:35 +01:00
18 lines
432 B
Docker
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;"]
|