mirror of
https://github.com/cryptoadvance/specter-desktop.git
synced 2026-08-13 12:33:29 +02:00
* initial cirrus config * cirrus * f*ck caching * images and deleting travis * check * bugfix weird ci-issue (directory exists) * kick * revert * kick * fix Co-authored-by: benk10 <ben.kaufman10@gmail.com>
10 lines
302 B
Docker
10 lines
302 B
Docker
FROM cypress/base:12
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
python3-pip python3-virtualenv zip unzip file apt libusb-1.0-0-dev libudev-dev \
|
|
bc
|
|
|
|
WORKDIR /test
|
|
RUN rm -rf node_modules package-lock.json ~/.cache/Cypress
|
|
RUN npm install --save-dev cypress@7.1.0
|
|
RUN $(npm bin)/cypress verify
|