github.com/kubeshop/testkube@v1.17.23/contrib/executor/cypress/build/agent/Dockerfile.cypress10 (about)

     1  # syntax=docker/dockerfile:1
     2  FROM cypress/included:10.11.0
     3  COPY cypress /bin/runner
     4  # run as a root in order to install to /root/cache and write to shared data volume
     5  
     6  RUN apt-get update && \
     7      apt-get install -y curl && \
     8      apt-get clean && \
     9      rm -rf /var/lib/apt/lists/*
    10  
    11  RUN mkdir /home/runner
    12  
    13  WORKDIR /home/runner/
    14  ENV DEPENDENCY_MANAGER=npm
    15  
    16  ENTRYPOINT ["/bin/runner"]