Remove cypress color output

This commit is contained in:
Jamie Curnow
2023-06-01 11:37:45 +10:00
parent b437119535
commit ed609f0bec
2 changed files with 4 additions and 1 deletions

View File

@ -2,6 +2,10 @@ FROM cypress/included:12.13.0
COPY --chown=1000 ./test /test
# Disable Cypress CLI colors
ENV FORCE_COLOR=0
ENV NO_COLOR=1
WORKDIR /test
RUN yarn install && yarn cache clean
ENTRYPOINT []