9 lines
249 B
Docker
9 lines
249 B
Docker
FROM nginx:alpine
|
|
|
|
COPY index.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 80
|