github.com/mgoltzsche/ctnr@v0.7.1-alpha/image/builder/dockerfile/testfiles/50-arg.expected (about)

     1  FROM alpine:3.7
     2  
     3  ENV "MYVARX"="entrypoint.sh"
     4  ENV "MYVARY"="pval"
     5  ENV "LONGVAR"="long val"
     6  
     7  COPY dir="./ctx" "entrypoint.sh" "/dest" 0:0
     8  COPY dir="./ctx" "/entrypoint.sh" "entrypoint.sh" 0:0
     9  COPY dir="./ctx" "/entrypoint.sh" "/dest" 0:0
    10  COPY image="alpine:3.7" "etc/hosts" "/dest" 0:0
    11  
    12  EXPOSE 80 443/tcp
    13  
    14  LABEL "entrypoint.sh"="pval"
    15  
    16  STOPSIGNAL SIGTERM
    17  
    18  USER 0:0
    19  
    20  VOLUME "pval" "/data"
    21  
    22  WORKDIR /data
    23  WORKDIR /
    24  
    25  RUN "argd"="entrypoint.sh" "argimg"="alpine:3.7" "argp"="pval" "argstop"="SIGTERM" "argusr"="0:0" "argvol"="/data" "longarg"="long val" "port1"="80" "port2"="443/tcp" "/bin/sh" "-c" "echo $argd"
    26  
    27  ENTRYPOINT "/bin/sh" "-c" "echo $argd"
    28  ENTRYPOINT "/bin/echo" "$argd"