diff --git a/Dockerfile b/Dockerfile index 395d45e..ff73fb3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -31,7 +31,7 @@ RUN \ echo "**** setup openssh environment ****" && \ sed -i 's/#PasswordAuthentication yes/PasswordAuthentication no/g' /etc/ssh/sshd_config && \ usermod --shell /bin/bash abc && \ - echo "Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" > /build_version && \ + printf "Linuxserver.io version:- ${VERSION}\nBuild-date:- ${BUILD_DATE}" > /build_version && \ rm -rf \ /tmp/* diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index a28e17b..85bb87a 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -31,7 +31,7 @@ RUN \ echo "**** setup openssh environment ****" && \ sed -i 's/#PasswordAuthentication yes/PasswordAuthentication no/g' /etc/ssh/sshd_config && \ usermod --shell /bin/bash abc && \ - echo "Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" > /build_version && \ + printf "Linuxserver.io version:- ${VERSION}\nBuild-date:- ${BUILD_DATE}" > /build_version && \ rm -rf \ /tmp/*