Skip to content
This repository was archived by the owner on May 26, 2022. It is now read-only.

rubensa/docker-python3-dev

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

WARNING: This image is obsolete and has been superseded by rubensa/ubuntu-tini-dev.

Python 3 image for local development

This image provides a Python 3 environment useful for local development purposes. The internal user (python3) has sudo and the image includes fixuid so you can set internal user (python3) UID and internal group (python) GUID to your current UID and GUID by providing that info means of "-u" docker running option.

Running

You can interactively run the container by mapping current user UID:GUID and working directory.

docker run --rm -it \
	--name "python3-dev" \
	-v $(pwd):/home/python3/work \
	-w /home/python3/work \
	-u $(id -u $USERNAME):$(id -g $USERNAME) \
	rubensa/python3-dev

This way, any file created in the container initial working directory is written and owned by current host user in the launch directory.

About

Python 3 Docker image for local development

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published