Initial GPT Contribution

This commit is contained in:
TheOldGuy 2024-09-03 03:23:27 +00:00
parent 1df1a06b9b
commit 0a3d7cfce2

12
Dockerfile Normal file
View File

@ -0,0 +1,12 @@
# Use the official lightweight Alpine Linux image
FROM nginx:alpine
# Copy the website files to the default Nginx public directory
COPY ./index.html /usr/share/nginx/html/
COPY ./background.jpg /usr/share/nginx/html/
# Expose port 80 to be accessible
EXPOSE 80
# Start Nginx when the container is run
CMD ["nginx", "-g", "daemon off;"]