Files
2026-03-30 15:42:39 -04:00

12 lines
211 B
Docker

# Use a lightweight Nginx image
FROM nginx:alpine
# Copy the static files to the Nginx html directory
COPY . /usr/share/nginx/html/
# Expose port 80
EXPOSE 80
# Start Nginx
CMD ["nginx", "-g", "daemon off;"]