get.porter.sh/porter@v1.3.0/tests/integration/testdata/bundles/outputs-example/Dockerfile (about)

     1  FROM debian:stable-slim
     2  
     3  ARG BUNDLE_DIR
     4  
     5  RUN apt-get update && apt-get install -y ca-certificates
     6  
     7  # exec mixin has no buildtime dependencies
     8  
     9  
    10  COPY . ${BUNDLE_DIR}
    11  RUN rm -fr ${BUNDLE_DIR}/.cnab
    12  COPY .cnab /cnab
    13  COPY porter.yaml ${BUNDLE_DIR}/porter.yaml
    14  WORKDIR ${BUNDLE_DIR}
    15  CMD ["/cnab/app/run"]