5 lines
81 B
Docker
5 lines
81 B
Docker
FROM nginx:alpine
|
|
|
|
# Copy files to nginx path
|
|
RUN cp -r * /usr/share/nginx/html
|
|
|