feat: initial commit

This commit is contained in:
Jake
2024-11-17 13:03:45 -03:00
commit 970c06079a
2 changed files with 19 additions and 0 deletions

8
Dockerfile Normal file
View File

@@ -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