diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..c51cf9b --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +FROM nginx:alpine + +COPY ./ /usr/share/nginx/html/ + +# Expose port 80 for the container +EXPOSE 80 + +# Start Nginx when the container runs +CMD ["nginx", "-g", "daemon off;"] +