Joe Ferguson 9538ebb6db pulled descriptions from registry.hub 11 years ago
..
.keep 48776166e3 adding some directories for andrew to dump the short and long desc in 11 years ago
README-content.md 9538ebb6db pulled descriptions from registry.hub 11 years ago
README-short.txt 9538ebb6db pulled descriptions from registry.hub 11 years ago
README.md 9538ebb6db pulled descriptions from registry.hub 11 years ago
logo.png 01c1265395 logos for all the things 11 years ago

README-content.md

What is Python

Python is a widely used general-purpose, high-level programming language. Its design philosophy emphasizes code readability, and its syntax allows programmers to express concepts in fewer lines of code than would be possible in languages such as C. The language provides constructs intended to enable clear programs on both a small and large scale.

wikipedia.org/wiki/Python_(programming_language)

How to use this image

1. create a Dockerfile in your python app project

FROM python:3
ADD . /usr/src/app
WORKDIR /usr/src/app
CMD ["python3", "./your-daemon-or-script.py"]

or (if you need caveman Python):

FROM python:2
ADD . /usr/src/app
WORKDIR /usr/src/app
CMD ["python2", "./your-daemon-or-script.py"]

2. build the python app image

docker build -t my-python-app .

3. start the python app container

docker run -it --name some-python-app my-python-app