first commit

This commit is contained in:
2025-04-04 08:46:42 +02:00
commit 97ff6d933f
10 changed files with 174 additions and 0 deletions

15
Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM cypress/base:22.13.1
RUN npm config set @skydust:registry=https://gitea.skydust.fr/api/packages/skydust/npm/
RUN npm install -g @skydust/toolkit@1.2.3
RUN apt-get update
RUN apt-get install --yes firefox-esr
RUN apt-cache clean
COPY ./e2e /e2e
COPY ./entrypoint.sh /
RUN cd /e2e && npx cypress install
ENTRYPOINT ["/entrypoint.sh"]