9 lines
277 B
Docker
9 lines
277 B
Docker
FROM nginx:alpine
|
|
|
|
COPY fancy-wordle-modern.html /usr/share/nginx/html/fancy-wordle-modern.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 80
|