14 lines
242 B
YAML
14 lines
242 B
YAML
services:
|
|
ci:
|
|
build:
|
|
context: ..
|
|
dockerfile: ci.Dockerfile
|
|
working_dir: /workspace
|
|
volumes:
|
|
- "../:/workspace:Z"
|
|
environment:
|
|
- IN_CI_CONTAINER=1
|
|
entrypoint: ["bash","-lc"]
|
|
command: ["bash"]
|
|
|