commit 970c06079aa6c9ec7853281e416a06e4b64ea03a Author: Jake Date: Sun Nov 17 13:03:45 2024 -0300 feat: initial commit diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..8aea88d --- /dev/null +++ b/Dockerfile @@ -0,0 +1,8 @@ +# Use the official Nginx image from the Docker Hub +FROM nginx:alpine + +# Copy the index.html file to the default Nginx HTML directory +COPY index.html /usr/share/nginx/html/index.html + +# Expose port 80 +EXPOSE 80 diff --git a/index.html b/index.html new file mode 100644 index 0000000..fcca1a4 --- /dev/null +++ b/index.html @@ -0,0 +1,11 @@ + + + + + + Hello World + + +

Hello, World!

+ +