github.com/rohankumardubey/draft-classic@v0.16.0/pkg/draft/testdata/no-dockerignore/Dockerfile (about)

     1  FROM ubuntu:trusty
     2  
     3  RUN apt-get update && apt-get install -y \
     4  	nginx \
     5      --no-install-recommends \
     6      && rm -rf /var/lib/apt/lists/*
     7  
     8  # forward request and error logs to docker log collector
     9  RUN ln -sf /dev/stdout /var/log/nginx/access.log
    10  RUN ln -sf /dev/stderr /var/log/nginx/error.log
    11  
    12  ENV POWERED_BY Draft
    13  
    14  COPY rootfs /
    15  
    16  CMD ["/bin/boot"]
    17  EXPOSE 80