Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 442 Bytes

File metadata and controls

22 lines (18 loc) · 442 Bytes

docker-python

Docker images for python developers

Images & Tags

python:3.10-poetry1.2.2: Minimal Python 3.10 with Poetry

docker pull jopplt/python:3.10-poetry1.2.2

Get a shell:

docker run --rm -it -v ${PWD}:/opt/app jopplt/python:3.10-poetry1.2.2 sh

## Local build & run

docker build --tag python:3.10-dev -f 3.10/poetry.Dockerfile 3.10
docker run --rm -it -v ${PWD}:/opt/app python:3.10-dev sh