37

Suppose you have some Dockerfile. What needs to be added to that file such that a string (ie "Hello World") is printed to the console during build?

docker build .

RESEARCH

This question is a top hit in Google for this topic. I have researched by googling and landing here.

WHAT I HAVE TRIED

From the accepted answer:

RUN echo "hello there"

This actually doesn't work.

Alex R
  • 11,364
  • 15
  • 100
  • 180
Matt C.
  • 2,330
  • 3
  • 22
  • 26

2 Answers2

52

It's fairly simple actually. If you just want to print stuff using in the build proccess you could just add the following line to your Dockerfile:

RUN echo "hello there"

And then add these options to your docker build command:

--progress=plain --no-cache

EDIT:

as noted by @SoftwareEngineer, when used for logging or tooling purposes you should append the echo command to the one you want to check if were successful. for example when downloading packages and wanting to get a print statement when finished: example from nginx official image dockerfile

RUN apt-get install -y whatever && echo "installed package"
Noam Yizraeli
  • 4,446
  • 18
  • 35
0

I like to keep notes to remind myself what I am doing and display logs to myself to verify that it happens in this version. RUN it is

# Copy local config into container
COPY config/kibana.yml /opt/kibana/config/kibana.yml

# Verify that local configuration file is copied in & enables SSL/TLS
RUN ls -l /opt/kibana/config/
alar
  • 47
  • 5