Files
python-jenkins-project/Dockerfile
2025-03-04 23:16:30 +00:00

11 lines
292 B
Docker

# Use a lightweight Nginx image as the base
FROM nginx:alpine
# Copy the index.html file into the Nginx default web directory
COPY index.html /usr/share/nginx/html/
# Expose port 80 (which will be mapped to 5555 on the host)
EXPOSE 80
# Nginx already runs by default, so no CMD is needed.