ci: include scripts in test image

This commit is contained in:
Brad Stein 2026-02-03 19:32:14 -03:00
parent 1f94991601
commit a25b08b870

View File

@ -13,6 +13,7 @@ FROM base AS test
COPY requirements-dev.txt /app/requirements-dev.txt COPY requirements-dev.txt /app/requirements-dev.txt
RUN pip install --no-cache-dir -r /app/requirements-dev.txt RUN pip install --no-cache-dir -r /app/requirements-dev.txt
COPY tests /app/tests COPY tests /app/tests
COPY scripts /app/scripts
FROM base AS runtime FROM base AS runtime
EXPOSE 8090 EXPOSE 8090