mirror of
https://github.com/status-im/libp2p-test-plans.git
synced 2025-01-15 09:26:19 +00:00
438b689cfa
* Browser testing with aegir * Support onlyDial * Bump timeout for browser tests * Support webtransport browser test * PR comments * Tweak * Handle cases where the listener exits before dialer * Remove debug code * Bump node version * Prewarm with playwright install * Support extra timeouts when running against node or browser * Add timeout option to rust and js
17 lines
269 B
Docker
17 lines
269 B
Docker
# syntax=docker/dockerfile:1
|
|
FROM node:18
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package*.json .
|
|
|
|
RUN npm ci
|
|
|
|
COPY tsconfig.json .
|
|
COPY .aegir.js .
|
|
COPY test ./test
|
|
COPY src ./src
|
|
|
|
RUN npm run build
|
|
|
|
ENTRYPOINT [ "npm", "test", "--", "--build", "false", "--types", "false", "-t", "node" ] |