fix: adds app version back to worker & scheduler images

This commit is contained in:
2025-09-15 14:26:15 -05:00
parent 981699bc13
commit 53da7a746b
3 changed files with 7 additions and 1 deletions

View File

@@ -1,5 +1,8 @@
FROM code.caldwell.digital/home/torsearch-base-worker:php8.4-alpine
ARG APP_VERSION="0.0.0-dev"
ENV APP_VERSION="${APP_VERSION}"
COPY . /app
ENTRYPOINT [ "php", "/app/bin/console", "messenger:consume", "async" ]