diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..e8abed3 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,15 @@ +# Use an official Nginx image as the base image +FROM nginx:alpine + +# Set the working directory inside the container +WORKDIR /usr/share/nginx/html + +# Copy the index.html and adventure.pl files into the Nginx directory +COPY index.html /usr/share/nginx/html/ + +# Expose port 80 to allow access to the web server +EXPOSE 80 + +# Start the Nginx server +CMD ["nginx", "-g", "daemon off;"] + diff --git a/index.html b/index.html new file mode 100644 index 0000000..4dd0021 --- /dev/null +++ b/index.html @@ -0,0 +1,534 @@ + + +
+ + +