updated Version
This commit is contained in:
parent
94861e006a
commit
7928b5e016
11
Dockerfile
11
Dockerfile
@ -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
|
||||
@ -1,4 +1,3 @@
|
||||
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
@ -8,8 +7,8 @@
|
||||
<title>Fancy Wordle</title>
|
||||
<link rel="stylesheet" href="CSS/styles.css">
|
||||
<script src="https://cdn.jsdelivr.net/npm/@tsparticles/confetti@3.0.3/tsparticles.confetti.bundle.min.js"></script>
|
||||
<script src="word-data.js?v=4" defer></script>
|
||||
<script src="script.js?v=4" defer></script>
|
||||
<script src="word-data.js?v=5" defer></script>
|
||||
<script src="script.js?v=5" defer></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="app-shell">
|
||||
|
||||
Loading…
Reference in New Issue
Block a user