13 lines
182 B
YAML
13 lines
182 B
YAML
|
version: "3"
|
||
|
services:
|
||
|
osmesa:
|
||
|
build: .
|
||
|
stdin_open: true
|
||
|
tty: true
|
||
|
volumes:
|
||
|
- .:/app
|
||
|
working_dir: /app
|
||
|
command: /opt/py/bin/python example.py
|
||
|
|
||
|
|