Initial GPT Contribution
This commit is contained in:
parent
1df1a06b9b
commit
0a3d7cfce2
12
Dockerfile
Normal file
12
Dockerfile
Normal 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;"]
|
Loading…
Reference in New Issue
Block a user