custom1/Dockerfile

5 lines
108 B
Docker
Raw Normal View History

FROM nginx:alpine
COPY ./custom1/*.html /usr/share/nginx/html/
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]