diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..5748232 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +# Use the official Nginx image as base +FROM nginx:alpine + +# Copy custom index.html to nginx default html folder +COPY index.html /usr/share/nginx/html/index.html + +# Expose port 80 +EXPOSE 80 + +# Start Nginx +CMD ["nginx", "-g", "daemon off;"]