fix: installs wget into worker image

This commit is contained in:
2025-09-14 22:11:58 -05:00
parent aeb706b5af
commit 6f9db68664

View File

@@ -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