15 lines
404 B
YAML
Executable File
15 lines
404 B
YAML
Executable File
services:
|
|
paper:
|
|
build: { context: ., dockerfile: Dockerfile.full }
|
|
image: polypaper:full
|
|
working_dir: /work
|
|
volumes: [ ".:/work" ]
|
|
command: bash -lc "make VENUE=${VENUE:-arxiv}"
|
|
|
|
paper-tiny:
|
|
build: { context: ., dockerfile: Dockerfile.tinytex }
|
|
image: polypaper:tinytex
|
|
working_dir: /work
|
|
volumes: [ ".:/work" ]
|
|
command: bash -lc "make VENUE=${VENUE:-arxiv}"
|