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