Initial Upload

This commit is contained in:
Matt Batchelder
2025-12-02 10:32:59 -05:00
commit 05ce0da296
2240 changed files with 467811 additions and 0 deletions

16
Dockerfile.cypress Normal file
View File

@@ -0,0 +1,16 @@
FROM cypress/base:12
WORKDIR /app
RUN npm install har-validator
RUN npm install --save-dev --slient cypress@10.1.0
RUN $(npm bin)/cypress verify
RUN mkdir /app/results
# Create this file so that we can volume mount it
RUN touch /app/cypress.config.js
# Create this folder so that we can volume mount it
RUN mkdir /app/cypress