custom1/Dockerfile

5 lines
100 B
Docker
Raw Normal View History

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