From 8146dce11e290fd0e9925f46df8766dfe218a421 Mon Sep 17 00:00:00 2001 From: Yuan Tang Date: Thu, 2 Jan 2025 11:04:29 -0600 Subject: [PATCH] Add missing newlines before printing the Dockerfile content (#700) Before: ``` Dockerfile created successfully in /tmp/tmp.qyMdb0vI8X/DockerfileFROM python:3.10-slim WORKDIR /app RUN apt-get update && apt-get install -y iputils-ping net-tools iproute2 dnsutils telnet curl wget telnet procps psmisc lsof traceroute bubblewrap && rm -rf /var/lib/apt/lists/* ``` After: ``` Dockerfile created successfully in /tmp/tmp.qyMdb0vI8X/Dockerfile FROM python:3.10-slim WORKDIR /app RUN apt-get update && apt-get install -y iputils-ping net-tools iproute2 dnsutils telnet curl wget telnet procps psmisc lsof traceroute bubblewrap && rm -rf /var/lib/apt/lists/* ``` Signed-off-by: Yuan Tang --- llama_stack/distribution/build_container.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llama_stack/distribution/build_container.sh b/llama_stack/distribution/build_container.sh index a9aee8f14..49e65b8cb 100755 --- a/llama_stack/distribution/build_container.sh +++ b/llama_stack/distribution/build_container.sh @@ -126,7 +126,7 @@ ENTRYPOINT ["python", "-m", "llama_stack.distribution.server.server", "--templat EOF -printf "Dockerfile created successfully in $TEMP_DIR/Dockerfile" +printf "Dockerfile created successfully in $TEMP_DIR/Dockerfile\n\n" cat $TEMP_DIR/Dockerfile printf "\n"