mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 17:19:37 +02:00
* [monorepo] move building of nginx proxy into Makefile * [v1] add fake-secrets.env * [github] add copilot-setup-steps.yml workflow * [make] debug permissions * [monorepo] use the host uid/gid for monorepo service * [web] populate DOCKER_USER for test_frontend_ct * [github] run npm install outside docker in Copilot sandbox * [monorepo] add comment for building nginx-proxy image locally * [monorepo] change uid/gid of node user in cypress image * [monorepo] low-level rewrite of passwd and groups to match host user GitOrigin-RevId: d74a5801f0318bab7e7f460374255426706002a3
19 lines
442 B
YAML
19 lines
442 B
YAML
services:
|
|
cypress:
|
|
build:
|
|
context: ../../dockerfiles/cypress
|
|
args:
|
|
- USER_UID
|
|
- USER_GID
|
|
volumes:
|
|
- ../../:/overleaf
|
|
- /tmp/.X11-unix:/tmp/.X11-unix
|
|
- ${XAUTHORITY:-/dev/null}:/home/node/.Xauthority
|
|
working_dir: /overleaf/services/web
|
|
entrypoint: npm
|
|
command: run cypress:open-ct
|
|
environment:
|
|
VERBOSE_LOGGING:
|
|
DISPLAY: ${DISPLAY:-:0}
|
|
# DEBUG: cypress.*
|