initial commit

This commit is contained in:
2026-05-30 18:51:10 +00:00
commit 95f5fdd3ea
19 changed files with 3050 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM mcr.microsoft.com/devcontainers/javascript-node:22
# Install Chrome (stable)
RUN wget -q -O /tmp/chrome.deb https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb \
&& apt-get update && apt-get install -y /tmp/chrome.deb \
&& rm /tmp/chrome.deb \
&& apt-get clean
# Install Chrome DevTools CLI for headless testing
RUN npm install -g chrome-devtools-cli
WORKDIR /workspace