github.com/swisspost/terratest@v0.0.0-20230214120104-7ec6de2e1ae0/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"]