Files
bb-valentines/DockerFile.txt
2026-02-05 13:25:32 +08:00

8 lines
182 B
Plaintext

# Use the lightweight Nginx image
FROM nginx:alpine
# Copy all files from your Git repo into the web server directory
COPY ./html/ /usr/share/nginx/html/
# Expose port 80
EXPOSE 80