File: Dockerfile.arg-scope

package info (click to toggle)
golang-github-openshift-imagebuilder 1.2.19%2Bds1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,740 kB
  • sloc: makefile: 18; sh: 3; ansic: 1
file content (14 lines) | stat: -rw-r--r-- 208 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM mirror.gcr.io/alpine
ARG SECRET
ARG UNUSED
ARG INHERITED=set
RUN echo "$SECRET"

FROM mirror.gcr.io/alpine
ARG FOO=test
ARG BAR=bartest
RUN echo "$FOO:$BAR"
RUN echo "$SECRET"

FROM 0
RUN echo "$SECRET"