14 lines
268 B
YAML
14 lines
268 B
YAML
# docker run --rm -v $(pwd):/code -w /code -u $(id -u) -it python:3.10 bash
|
|
|
|
version: "3.8"
|
|
|
|
services:
|
|
application:
|
|
image: python:3.10
|
|
volumes:
|
|
- .:/code
|
|
working_dir: /code
|
|
entrypoint: /code/entrypoint.sh
|
|
tty: true
|
|
|