github.com/darmach/terratest@v0.34.8-0.20210517103231-80931f95e3ff/test/fixtures/docker/Dockerfile (about) 1 # A "Hello, World" Docker image used in automated tests for the docker.Build command. 2 FROM alpine:3.7 as step1 3 ARG text1 4 RUN echo $text1 > text.txt 5 CMD ["cat", "text.txt"] 6 7 FROM step1 8 ARG text 9 RUN echo $text > text.txt 10 CMD ["cat", "text.txt"]