Wordle/Dockerfile
2025-07-22 11:32:07 -04:00

13 lines
236 B
Docker

# Use official Nginx image
FROM nginx:alpine
# Remove default Nginx web files
RUN rm -rf /usr/share/nginx/html/*
# Copy all your static site files into the Nginx web directory
COPY . /usr/share/nginx/html
# Expose port 80
EXPOSE 80