Files
Main-Page/Dockerfile
2025-07-03 14:02:45 -04:00

11 lines
230 B
Docker

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