13 lines
213 B
Docker
Raw Normal View History

2024-05-21 13:06:24 +10:00
FROM cypress/included:13.9.0
COPY --chown=1000 ./test /test
2023-06-01 11:37:45 +10:00
# Disable Cypress CLI colors
ENV FORCE_COLOR=0
ENV NO_COLOR=1
WORKDIR /test
2023-01-08 19:01:00 +10:00
RUN yarn install && yarn cache clean
ENTRYPOINT []
2023-05-31 13:00:16 +10:00
CMD ["cypress", "run"]