5 lines
165 B
Docker
5 lines
165 B
Docker
FROM nginx:latest
|
|
|
|
COPY ./index.html /usr/share/nginx/html/index.html
|
|
COPY ./index.css /usr/share/nginx/html/index.css
|
|
COPY ./index.js /usr/share/nginx/html/index.js |