16 lines
340 B
Docker
16 lines
340 B
Docker
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-get clean
|
|
|
|
COPY ./e2e /e2e
|
|
COPY ./entrypoint.sh /
|
|
|
|
RUN cd /e2e && npx cypress install
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|