updated Version

This commit is contained in:
Zakaria
2026-05-08 11:59:04 -04:00
parent 94861e006a
commit 7928b5e016
2 changed files with 6 additions and 10 deletions
+4 -7
View File
@@ -1,11 +1,8 @@
# Use the official Nginx image as the base image
FROM nginx:alpine
# Copy the local files to the Nginx default directory
COPY . /usr/share/nginx/html
COPY fancy-wordle-modern.html /usr/share/nginx/html/index.html
COPY CSS /usr/share/nginx/html/CSS
COPY img /usr/share/nginx/html/img
COPY Celebration.mp3 dictionary.json script.js targetWords.json word-data.js /usr/share/nginx/html/
# Expose port 80
EXPOSE 80
# Start Nginx when the container launches
CMD ["nginx", "-g", "daemon off;"]# Use the official Nginx image as the base image