Dockerfile 295 B

1234567891011121314
  1. # Playwright version should match the one in the yarn.lock file
  2. FROM mcr.microsoft.com/playwright:v1.11.1-focal
  3. COPY *.* /tmp/galata/
  4. WORKDIR /tmp/galata
  5. RUN yarn install --frozen-lockfile
  6. COPY ./docker/*.sh /opt/galata/
  7. ENTRYPOINT [ "/opt/galata/run-e2e.sh" ]
  8. CMD ["yarn", "run", "test"]