docs/test/integration/testdata/build_with_args/Dockerfile

5 lines
109 B
Docker

FROM busybox:latest
ARG greeting=hello
ENV GREETING=$greeting
CMD ["/bin/sh", "-c", "echo -n \"$GREETING\""]