chore: creates base worker image

This commit is contained in:
2025-09-15 13:15:10 -05:00
parent 52f460ff62
commit 981699bc13
4 changed files with 24 additions and 11 deletions

View File

@@ -1,10 +1,6 @@
ARG APP_VERSION
FROM code.caldwell.digital/home/torsearch-base-worker:php8.4-alpine
FROM code.caldwell.digital/home/torsearch-app:${APP_VERSION}
RUN apt install -y wget && \
apt autoremove && \
apt clean
COPY . /app
ENTRYPOINT [ "php", "/app/bin/console", "messenger:consume", "async" ]