ligo/tools/webide/packages/e2e/Dockerfile
Jev Björsell c119c44c13
Import webide into main ligo monorepo
When this is merged https://gitlab.com/ligolang/ligo-web-ide/ will be
marked as deprecated.

This MR does not hook up the webide build to the main CI. The CI
integration will come in a subsequent MR for the sake of making review
easier.
2020-02-06 19:04:18 -08:00

13 lines
252 B
Docker

FROM alekzonder/puppeteer:latest as puppeteer
WORKDIR /app
COPY package.json package.json
COPY package-lock.json package-lock.json
COPY jest-puppeteer.config.js jest-puppeteer.config.js
COPY test test
RUN npm ci
ENTRYPOINT [ "npm", "run", "test" ]