From 6f9db6866455b53c51f594cdd4855fa4bbd3e397 Mon Sep 17 00:00:00 2001 From: Brock H Caldwell Date: Sun, 14 Sep 2025 22:11:58 -0500 Subject: [PATCH] fix: installs wget into worker image --- docker/Dockerfile.worker | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docker/Dockerfile.worker b/docker/Dockerfile.worker index 937923e..6bc6a13 100644 --- a/docker/Dockerfile.worker +++ b/docker/Dockerfile.worker @@ -2,6 +2,10 @@ ARG APP_VERSION FROM code.caldwell.digital/home/torsearch-app:${APP_VERSION} +RUN apt install -y wget && \ + apt autoremove && \ + apt clean + ENTRYPOINT [ "php", "/app/bin/console", "messenger:consume", "async" ] HEALTHCHECK --interval=3s --timeout=3s --retries=10 CMD return 0