From 829c8f4f6063f1448f189b2dcf682d8704927e0a Mon Sep 17 00:00:00 2001 From: Santiago Reig <305333+chiva@users.noreply.github.com> Date: Sat, 12 Apr 2025 16:29:17 +0200 Subject: [PATCH] fix: don't print versions --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index bd6edeac..d2efca7d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -65,7 +65,7 @@ USER zeronet ENTRYPOINT ["/sbin/tini", "--"] # The command the container runs with -CMD ["sh", "-c", "echo \"Python: $(python -V), Tor: $(tor --version | head -n1)\" && (! ${ENABLE_TOR} || tor&) && python zeronet.py --ui_ip ${UI_IP} --ui_port ${UI_PORT} --fileserver_port ${FILESERVER_PORT} ${ADDITIONAL_ARGS}"] +CMD ["sh", "-c", "(! ${ENABLE_TOR} || tor&) && python zeronet.py --ui_ip ${UI_IP} --ui_port ${UI_PORT} --fileserver_port ${FILESERVER_PORT} ${ADDITIONAL_ARGS}"] # Expose ports - using the environment variables EXPOSE ${UI_PORT} ${FILESERVER_PORT}