github.com/kubeshop/testkube@v1.17.23/contrib/executor/cypress/build/agent/Dockerfile.cypress13 (about) 1 # syntax=docker/dockerfile:1 2 FROM cypress/included:13.6.1 3 COPY cypress /bin/runner 4 5 RUN apt-get update && \ 6 apt-get install -y curl && \ 7 apt-get clean && \ 8 rm -rf /var/lib/apt/lists/* 9 10 # run as a root in order to install to /root/cache and write to shared data volume 11 RUN mkdir /home/runner 12 13 WORKDIR /home/runner/ 14 15 ENV DEPENDENCY_MANAGER=npm 16 17 ENTRYPOINT ["/bin/runner"]